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

Unified Diff: extensions/browser/app_window/app_window_contents.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/app_window/app_window_contents.h
diff --git a/extensions/browser/app_window/app_window_contents.h b/extensions/browser/app_window/app_window_contents.h
index 6d6a995128eff731ed137b901d35029ddaa1c999..ab07ca6a369ae6541971d0ed5e232daa33872e79 100644
--- a/extensions/browser/app_window/app_window_contents.h
+++ b/extensions/browser/app_window/app_window_contents.h
@@ -29,24 +29,23 @@ class AppWindowContentsImpl : public AppWindowContents,
public ExtensionFunctionDispatcher::Delegate {
public:
explicit AppWindowContentsImpl(AppWindow* host);
- virtual ~AppWindowContentsImpl();
+ ~AppWindowContentsImpl() override;
// AppWindowContents
- virtual void Initialize(content::BrowserContext* context,
- const GURL& url) override;
- virtual void LoadContents(int32 creator_process_id) override;
- virtual void NativeWindowChanged(NativeAppWindow* native_app_window) override;
- virtual void NativeWindowClosed() override;
- virtual void DispatchWindowShownForTests() const override;
- virtual content::WebContents* GetWebContents() const override;
+ void Initialize(content::BrowserContext* context, const GURL& url) override;
+ void LoadContents(int32 creator_process_id) override;
+ void NativeWindowChanged(NativeAppWindow* native_app_window) override;
+ void NativeWindowClosed() override;
+ void DispatchWindowShownForTests() const override;
+ content::WebContents* GetWebContents() const override;
private:
// content::WebContentsObserver
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
// ExtensionFunctionDispatcher::Delegate
- virtual WindowController* GetExtensionWindowController() const override;
- virtual content::WebContents* GetAssociatedWebContents() const override;
+ WindowController* GetExtensionWindowController() const override;
+ content::WebContents* GetAssociatedWebContents() const override;
void OnRequest(const ExtensionHostMsg_Request_Params& params);
void UpdateDraggableRegions(const std::vector<DraggableRegion>& regions);
« no previous file with comments | « extensions/browser/app_window/app_window.h ('k') | extensions/browser/app_window/app_window_geometry_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698