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

Unified Diff: extensions/browser/guest_view/app_view/app_view_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/app_view/app_view_guest.h
diff --git a/extensions/browser/guest_view/app_view/app_view_guest.h b/extensions/browser/guest_view/app_view/app_view_guest.h
index 0cd18bc1729a057ad21bd6dd86e3fbcea2994a9a..c06542ea7db71615b80dee8c0a0f124e3cb6b215 100644
--- a/extensions/browser/guest_view/app_view/app_view_guest.h
+++ b/extensions/browser/guest_view/app_view/app_view_guest.h
@@ -35,27 +35,27 @@ class AppViewGuest : public GuestView<AppViewGuest>,
int guest_instance_id);
// ExtensionFunctionDispatcher::Delegate implementation.
- virtual WindowController* GetExtensionWindowController() const OVERRIDE;
- virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
+ virtual WindowController* GetExtensionWindowController() const override;
+ virtual content::WebContents* GetAssociatedWebContents() const override;
// content::WebContentsObserver implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// content::WebContentsDelegate implementation.
virtual bool HandleContextMenu(
- const content::ContextMenuParams& params) OVERRIDE;
+ const content::ContextMenuParams& params) override;
// GuestViewBase implementation.
- virtual const char* GetAPINamespace() const OVERRIDE;
- virtual int GetTaskPrefix() const OVERRIDE;
+ virtual const char* GetAPINamespace() const override;
+ virtual int GetTaskPrefix() const override;
virtual void CreateWebContents(
const std::string& embedder_extension_id,
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;
+ const WebContentsCreatedCallback& callback) override;
+ virtual void DidAttachToEmbedder() override;
+ virtual void DidInitialize() override;
private:
AppViewGuest(content::BrowserContext* browser_context, int guest_instance_id);
« no previous file with comments | « extensions/browser/extensions_test.h ('k') | extensions/browser/guest_view/extension_options/extension_options_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698