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

Unified Diff: extensions/browser/guest_view/extension_options/extension_options_guest.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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: extensions/browser/guest_view/extension_options/extension_options_guest.h
diff --git a/extensions/browser/guest_view/extension_options/extension_options_guest.h b/extensions/browser/guest_view/extension_options/extension_options_guest.h
index 73b28ef68e0079342df5b8b504ae987c17e40e1f..1aeca3649a2c8874c8da5cf2f273926a03b58487 100644
--- a/extensions/browser/guest_view/extension_options/extension_options_guest.h
+++ b/extensions/browser/guest_view/extension_options/extension_options_guest.h
@@ -32,27 +32,27 @@ class ExtensionOptionsGuest
int embedder_render_process_id,
const GURL& embedder_site_url,
const base::DictionaryValue& create_params,
- const WebContentsCreatedCallback& callback) OVERRIDE;
- virtual void DidAttachToEmbedder() OVERRIDE;
- virtual void DidInitialize() OVERRIDE;
- virtual void DidStopLoading() OVERRIDE;
- virtual const char* GetAPINamespace() const OVERRIDE;
- virtual int GetTaskPrefix() const OVERRIDE;
+ const WebContentsCreatedCallback& callback) override;
+ virtual void DidAttachToEmbedder() override;
+ virtual void DidInitialize() override;
+ virtual void DidStopLoading() override;
+ virtual const char* GetAPINamespace() const override;
+ virtual int GetTaskPrefix() const override;
virtual void GuestSizeChangedDueToAutoSize(
const gfx::Size& old_size,
- const gfx::Size& new_size) OVERRIDE;
- virtual bool IsAutoSizeSupported() const OVERRIDE;
+ const gfx::Size& new_size) override;
+ virtual bool IsAutoSizeSupported() const override;
// ExtensionFunctionDispatcher::Delegate implementation.
- virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
+ virtual content::WebContents* GetAssociatedWebContents() const override;
// content::WebContentsDelegate implementation.
virtual content::WebContents* OpenURLFromTab(
content::WebContents* source,
- const content::OpenURLParams& params) OVERRIDE;
- virtual void CloseContents(content::WebContents* source) OVERRIDE;
+ const content::OpenURLParams& params) override;
+ virtual void CloseContents(content::WebContents* source) override;
virtual bool HandleContextMenu(
- const content::ContextMenuParams& params) OVERRIDE;
+ const content::ContextMenuParams& params) override;
virtual bool ShouldCreateWebContents(
content::WebContents* web_contents,
int route_id,
@@ -60,10 +60,10 @@ class ExtensionOptionsGuest
const base::string16& frame_name,
const GURL& target_url,
const std::string& partition_id,
- content::SessionStorageNamespace* session_storage_namespace) OVERRIDE;
+ content::SessionStorageNamespace* session_storage_namespace) override;
// content::WebContentsObserver implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
private:
ExtensionOptionsGuest(content::BrowserContext* browser_context,

Powered by Google App Engine
This is Rietveld 408576698