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

Unified Diff: extensions/browser/guest_view/app_view/app_view_guest.h

Issue 664933004: Standardize usage of virtual/override/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 c06542ea7db71615b80dee8c0a0f124e3cb6b215..c938291b71aa68c53a2cdfc18d2f0168898963ac 100644
--- a/extensions/browser/guest_view/app_view/app_view_guest.h
+++ b/extensions/browser/guest_view/app_view/app_view_guest.h
@@ -35,32 +35,30 @@ class AppViewGuest : public GuestView<AppViewGuest>,
int guest_instance_id);
// ExtensionFunctionDispatcher::Delegate implementation.
- virtual WindowController* GetExtensionWindowController() const override;
- virtual content::WebContents* GetAssociatedWebContents() const override;
+ WindowController* GetExtensionWindowController() const override;
+ content::WebContents* GetAssociatedWebContents() const override;
// content::WebContentsObserver implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
// content::WebContentsDelegate implementation.
- virtual bool HandleContextMenu(
- const content::ContextMenuParams& params) override;
+ bool HandleContextMenu(const content::ContextMenuParams& params) override;
// GuestViewBase implementation.
- 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 char* GetAPINamespace() const override;
+ int GetTaskPrefix() const override;
+ 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;
+ void DidAttachToEmbedder() override;
+ void DidInitialize() override;
private:
AppViewGuest(content::BrowserContext* browser_context, int guest_instance_id);
- virtual ~AppViewGuest();
+ ~AppViewGuest() override;
void OnRequest(const ExtensionHostMsg_Request_Params& params);
« no previous file with comments | « extensions/browser/file_highlighter.h ('k') | extensions/browser/guest_view/extension_options/extension_options_guest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698