| Index: chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| diff --git a/chrome/browser/ui/ash/app_list/app_list_controller_ash.h b/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| index 7c0552ffd2c38d2af3c80f18a1ac92df62848981..19f842d0b29bf1af63cf5d0bcf2403212de0a522 100644
|
| --- a/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| +++ b/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
|
| @@ -17,31 +17,31 @@ class AppListControllerDelegateAsh : public AppListControllerDelegate {
|
|
|
| private:
|
| // AppListControllerDelegate overrides:
|
| - virtual void DismissView() OVERRIDE;
|
| - virtual gfx::NativeWindow GetAppListWindow() OVERRIDE;
|
| - virtual gfx::Rect GetAppListBounds() 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 void OnShowChildDialog() OVERRIDE;
|
| - virtual void OnCloseChildDialog() OVERRIDE;
|
| - virtual bool CanDoCreateShortcutsFlow() OVERRIDE;
|
| + virtual void DismissView() override;
|
| + virtual gfx::NativeWindow GetAppListWindow() override;
|
| + virtual gfx::Rect GetAppListBounds() 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 void OnShowChildDialog() override;
|
| + virtual void OnCloseChildDialog() override;
|
| + virtual bool CanDoCreateShortcutsFlow() override;
|
| virtual void DoCreateShortcutsFlow(Profile* profile,
|
| - const std::string& extension_id) OVERRIDE;
|
| - virtual void CreateNewWindow(Profile* profile, bool incognito) OVERRIDE;
|
| + const std::string& extension_id) override;
|
| + virtual void CreateNewWindow(Profile* profile, bool incognito) override;
|
| virtual void ActivateApp(Profile* profile,
|
| const extensions::Extension* extension,
|
| AppListSource source,
|
| - int event_flags) OVERRIDE;
|
| + int event_flags) override;
|
| virtual void LaunchApp(Profile* profile,
|
| const extensions::Extension* extension,
|
| AppListSource source,
|
| - int event_flags) OVERRIDE;
|
| + int event_flags) override;
|
| virtual void ShowForProfileByPath(
|
| - const base::FilePath& profile_path) OVERRIDE;
|
| - virtual bool ShouldShowUserIcon() OVERRIDE;
|
| + const base::FilePath& profile_path) override;
|
| + virtual bool ShouldShowUserIcon() override;
|
|
|
| ash::LaunchSource AppListSourceToLaunchSource(AppListSource source);
|
|
|
|
|