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); |