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

Unified Diff: chrome/browser/ui/views/app_list/win/app_list_controller_delegate_win.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/views/app_list/win/app_list_controller_delegate_win.h
diff --git a/chrome/browser/ui/views/app_list/win/app_list_controller_delegate_win.h b/chrome/browser/ui/views/app_list/win/app_list_controller_delegate_win.h
index 7bc7834baf4a05eb8d4858086b22ee983e60473a..6a21f8a6d7bef16a42dde5974342436c234c53f6 100644
--- a/chrome/browser/ui/views/app_list/win/app_list_controller_delegate_win.h
+++ b/chrome/browser/ui/views/app_list/win/app_list_controller_delegate_win.h
@@ -11,15 +11,15 @@
class AppListControllerDelegateWin : public AppListControllerDelegateViews {
public:
explicit AppListControllerDelegateWin(AppListServiceViews* service);
- virtual ~AppListControllerDelegateWin();
+ ~AppListControllerDelegateWin() override;
// AppListControllerDelegate overrides:
- virtual bool ForceNativeDesktop() const override;
- virtual gfx::ImageSkia GetWindowIcon() override;
+ bool ForceNativeDesktop() const override;
+ gfx::ImageSkia GetWindowIcon() override;
private:
// AppListcontrollerDelegateImpl:
- virtual void FillLaunchParams(AppLaunchParams* params) override;
+ void FillLaunchParams(AppLaunchParams* params) override;
DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateWin);
};

Powered by Google App Engine
This is Rietveld 408576698