| Index: chrome/browser/ui/apps/chrome_app_window_client.h
|
| diff --git a/chrome/browser/ui/apps/chrome_app_window_client.h b/chrome/browser/ui/apps/chrome_app_window_client.h
|
| index 09c1dceeb03a1fb9190f8c4b2106704027ef03af..8e601087a5d8106d2e6b1cf1cc37b2e81febc55c 100644
|
| --- a/chrome/browser/ui/apps/chrome_app_window_client.h
|
| +++ b/chrome/browser/ui/apps/chrome_app_window_client.h
|
| @@ -16,7 +16,7 @@ struct DefaultSingletonTraits;
|
| class ChromeAppWindowClient : public extensions::AppWindowClient {
|
| public:
|
| ChromeAppWindowClient();
|
| - virtual ~ChromeAppWindowClient();
|
| + ~ChromeAppWindowClient() override;
|
|
|
| // Get the LazyInstance for ChromeAppWindowClient.
|
| static ChromeAppWindowClient* GetInstance();
|
| @@ -25,15 +25,15 @@ class ChromeAppWindowClient : public extensions::AppWindowClient {
|
| friend struct DefaultSingletonTraits<ChromeAppWindowClient>;
|
|
|
| // extensions::AppWindowClient
|
| - virtual extensions::AppWindow* CreateAppWindow(
|
| + extensions::AppWindow* CreateAppWindow(
|
| content::BrowserContext* context,
|
| const extensions::Extension* extension) override;
|
| - virtual extensions::NativeAppWindow* CreateNativeAppWindow(
|
| + extensions::NativeAppWindow* CreateNativeAppWindow(
|
| extensions::AppWindow* window,
|
| extensions::AppWindow::CreateParams* params) override;
|
| - virtual void OpenDevToolsWindow(content::WebContents* web_contents,
|
| - const base::Closure& callback) override;
|
| - virtual bool IsCurrentChannelOlderThanDev() override;
|
| + void OpenDevToolsWindow(content::WebContents* web_contents,
|
| + const base::Closure& callback) override;
|
| + bool IsCurrentChannelOlderThanDev() override;
|
|
|
| // Implemented in platform specific code.
|
| static extensions::NativeAppWindow* CreateNativeAppWindowImpl(
|
|
|