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

Unified Diff: extensions/shell/browser/shell_app_window_client.h

Issue 667153007: Standardize usage of virtual/override/final specifiers. (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
« no previous file with comments | « extensions/shell/browser/shell_app_delegate.h ('k') | extensions/shell/browser/shell_browser_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/shell/browser/shell_app_window_client.h
diff --git a/extensions/shell/browser/shell_app_window_client.h b/extensions/shell/browser/shell_app_window_client.h
index e78a5675d9b57a5de830efde92bf6a1ea34749f6..0ead4a81685a1676546a290dc3f4d68d07037876 100644
--- a/extensions/shell/browser/shell_app_window_client.h
+++ b/extensions/shell/browser/shell_app_window_client.h
@@ -15,17 +15,17 @@ namespace extensions {
class ShellAppWindowClient : public AppWindowClient {
public:
ShellAppWindowClient();
- virtual ~ShellAppWindowClient();
+ ~ShellAppWindowClient() override;
// AppWindowClient overrides:
- virtual AppWindow* CreateAppWindow(content::BrowserContext* context,
- const Extension* extension) override;
- virtual NativeAppWindow* CreateNativeAppWindow(
+ AppWindow* CreateAppWindow(content::BrowserContext* context,
+ const Extension* extension) override;
+ NativeAppWindow* CreateNativeAppWindow(
AppWindow* window,
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;
private:
DISALLOW_COPY_AND_ASSIGN(ShellAppWindowClient);
« no previous file with comments | « extensions/shell/browser/shell_app_delegate.h ('k') | extensions/shell/browser/shell_browser_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698