| Index: chrome/browser/ui/app_list/test/test_app_list_controller_delegate.h
|
| diff --git a/chrome/browser/ui/app_list/test/test_app_list_controller_delegate.h b/chrome/browser/ui/app_list/test/test_app_list_controller_delegate.h
|
| index a715e75530a3309197ed6f2c54a40d44969c0a26..edad19ecd39824e3e014132b23a3eb7ca39d5536 100644
|
| --- a/chrome/browser/ui/app_list/test/test_app_list_controller_delegate.h
|
| +++ b/chrome/browser/ui/app_list/test/test_app_list_controller_delegate.h
|
| @@ -12,37 +12,36 @@ namespace test {
|
| class TestAppListControllerDelegate : public AppListControllerDelegate {
|
| public:
|
| TestAppListControllerDelegate();
|
| - virtual ~TestAppListControllerDelegate();
|
| + ~TestAppListControllerDelegate() override;
|
|
|
| - virtual void DismissView() override;
|
| - virtual gfx::NativeWindow GetAppListWindow() override;
|
| - virtual gfx::ImageSkia GetWindowIcon() override;
|
| - virtual bool IsAppPinned(const std::string& extension_id) override;
|
| - virtual void PinApp(const std::string& extension_id) override;
|
| - virtual void UnpinApp(const std::string& extension_id) override;
|
| - virtual Pinnable GetPinnable() override;
|
| - virtual bool CanDoCreateShortcutsFlow() override;
|
| - virtual void DoCreateShortcutsFlow(Profile* profile,
|
| - const std::string& extension_id) override;
|
| - virtual bool CanDoShowAppInfoFlow() override;
|
| - virtual void DoShowAppInfoFlow(Profile* profile,
|
| - const std::string& extension_id) override;
|
| - virtual void CreateNewWindow(Profile* profile, bool incognito) override;
|
| - virtual void OpenURL(Profile* profile,
|
| - const GURL& url,
|
| - ui::PageTransition transition,
|
| - WindowOpenDisposition deposition) override;
|
| - virtual void ActivateApp(Profile* profile,
|
| - const extensions::Extension* extension,
|
| - AppListSource source,
|
| - int event_flags) override;
|
| - virtual void LaunchApp(Profile* profile,
|
| - const extensions::Extension* extension,
|
| - AppListSource source,
|
| - int event_flags) override;
|
| - virtual void ShowForProfileByPath(
|
| - const base::FilePath& profile_path) override;
|
| - virtual bool ShouldShowUserIcon() override;
|
| + void DismissView() override;
|
| + gfx::NativeWindow GetAppListWindow() override;
|
| + gfx::ImageSkia GetWindowIcon() override;
|
| + bool IsAppPinned(const std::string& extension_id) override;
|
| + void PinApp(const std::string& extension_id) override;
|
| + void UnpinApp(const std::string& extension_id) override;
|
| + Pinnable GetPinnable() override;
|
| + bool CanDoCreateShortcutsFlow() override;
|
| + void DoCreateShortcutsFlow(Profile* profile,
|
| + const std::string& extension_id) override;
|
| + bool CanDoShowAppInfoFlow() override;
|
| + void DoShowAppInfoFlow(Profile* profile,
|
| + const std::string& extension_id) override;
|
| + void CreateNewWindow(Profile* profile, bool incognito) override;
|
| + void OpenURL(Profile* profile,
|
| + const GURL& url,
|
| + ui::PageTransition transition,
|
| + WindowOpenDisposition deposition) override;
|
| + void ActivateApp(Profile* profile,
|
| + const extensions::Extension* extension,
|
| + AppListSource source,
|
| + int event_flags) override;
|
| + void LaunchApp(Profile* profile,
|
| + const extensions::Extension* extension,
|
| + AppListSource source,
|
| + int event_flags) override;
|
| + void ShowForProfileByPath(const base::FilePath& profile_path) override;
|
| + bool ShouldShowUserIcon() override;
|
| };
|
|
|
| } // namespace test
|
|
|