#ifndef CHROME_BROWSER_UI_VIEWS_SHORTCUTS_SHORTCUT_INTEGRATION_INTERACTION_TEST_BASE_H_
#define CHROME_BROWSER_UI_VIEWS_SHORTCUTS_SHORTCUT_INTEGRATION_INTERACTION_TEST_BASE_H_
#include <memory>
#include <string>
#include "base/base_paths.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/shortcuts/shortcut_creation_test_support.h"
#include "chrome/common/chrome_features.h"
#include "chrome/test/interaction/interactive_browser_test.h"
namespace shortcuts {
class ShortcutIntegrationInteractionTestPrivate;
class ShortcutIntegrationInteractionTestApi : public InteractiveBrowserTestApi { … };
template <typename T>
requires std::derived_from<T, InProcessBrowserTest>
class ShortcutIntegrationInteractionTestT
: public T,
public ShortcutIntegrationInteractionTestApi { … };
ShortcutIntegrationInteractionTestBase;
}
#endif