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/extensions/api/tabs/ash_panel_contents.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/extensions/api/tabs/ash_panel_contents.h
diff --git a/chrome/browser/extensions/api/tabs/ash_panel_contents.h b/chrome/browser/extensions/api/tabs/ash_panel_contents.h
index 838446462bd1d20c9a8814edb711892ee71391e1..58565aa0d078f20e6b88618c2a7369b1a8280346 100644
--- a/chrome/browser/extensions/api/tabs/ash_panel_contents.h
+++ b/chrome/browser/extensions/api/tabs/ash_panel_contents.h
@@ -41,21 +41,21 @@ class AshPanelContents
// extensions::AppWindowContents
virtual void Initialize(content::BrowserContext* context,
- const GURL& url) OVERRIDE;
- virtual void LoadContents(int32 creator_process_id) OVERRIDE;
+ const GURL& url) override;
+ virtual void LoadContents(int32 creator_process_id) override;
virtual void NativeWindowChanged(
- extensions::NativeAppWindow* native_app_window) OVERRIDE;
- virtual void NativeWindowClosed() OVERRIDE;
- virtual void DispatchWindowShownForTests() const OVERRIDE;
- virtual content::WebContents* GetWebContents() const OVERRIDE;
+ extensions::NativeAppWindow* native_app_window) override;
+ virtual void NativeWindowClosed() override;
+ virtual void DispatchWindowShownForTests() const override;
+ virtual content::WebContents* GetWebContents() const override;
// LauncherFaviconLoader::Delegate overrides:
- virtual void FaviconUpdated() OVERRIDE;
+ virtual void FaviconUpdated() override;
// extensions::ExtensionFunctionDispatcher::Delegate
virtual extensions::WindowController* GetExtensionWindowController() const
- OVERRIDE;
- virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
+ override;
+ virtual content::WebContents* GetAssociatedWebContents() const override;
LauncherFaviconLoader* launcher_favicon_loader_for_test() {
return launcher_favicon_loader_.get();
@@ -63,7 +63,7 @@ class AshPanelContents
private:
// content::WebContentsObserver
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
void OnRequest(const ExtensionHostMsg_Request_Params& params);

Powered by Google App Engine
This is Rietveld 408576698