Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(606)

Unified Diff: chrome/browser/ui/app_list/app_list_controller_delegate_impl.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/app_list/app_list_controller_delegate_impl.h
diff --git a/chrome/browser/ui/app_list/app_list_controller_delegate_impl.h b/chrome/browser/ui/app_list/app_list_controller_delegate_impl.h
index b5f86aaa2cb657541b84a486250326315f4f20de..26d52640b2269795410f0a5f707ea446ba5df971 100644
--- a/chrome/browser/ui/app_list/app_list_controller_delegate_impl.h
+++ b/chrome/browser/ui/app_list/app_list_controller_delegate_impl.h
@@ -25,35 +25,34 @@ class Extension;
class AppListControllerDelegateImpl : public AppListControllerDelegate {
public:
explicit AppListControllerDelegateImpl(AppListService* service);
- virtual ~AppListControllerDelegateImpl();
+ ~AppListControllerDelegateImpl() override;
// AppListControllerDelegate overrides:
- 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 void CreateNewWindow(Profile* profile, bool incognito) override;
- virtual void OpenURL(Profile* profile,
- const GURL& url,
- ui::PageTransition transition,
- WindowOpenDisposition disposition) 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;
+ void CreateNewWindow(Profile* profile, bool incognito) override;
+ void OpenURL(Profile* profile,
+ const GURL& url,
+ ui::PageTransition transition,
+ WindowOpenDisposition disposition) 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;
protected:
// Perform platform-specific adjustments of |params| before OpenApplication().

Powered by Google App Engine
This is Rietveld 408576698