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

Unified Diff: athena/extensions/shell/athena_shell_app_window_client.h

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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: athena/extensions/shell/athena_shell_app_window_client.h
diff --git a/athena/extensions/shell/athena_shell_app_window_client.h b/athena/extensions/shell/athena_shell_app_window_client.h
index 9aac189b6483da8aae3d498db3a442417020cd38..bd6a9fef6dca5b7114c90912c04291396e1e455d 100644
--- a/athena/extensions/shell/athena_shell_app_window_client.h
+++ b/athena/extensions/shell/athena_shell_app_window_client.h
@@ -13,16 +13,16 @@ namespace athena {
class AthenaShellAppWindowClient : public AthenaAppWindowClientBase {
public:
AthenaShellAppWindowClient();
- virtual ~AthenaShellAppWindowClient();
+ ~AthenaShellAppWindowClient() override;
private:
// extensions::AppWindowClient
- virtual extensions::AppWindow* CreateAppWindow(
+ extensions::AppWindow* CreateAppWindow(
content::BrowserContext* context,
const extensions::Extension* extension) 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;
DISALLOW_COPY_AND_ASSIGN(AthenaShellAppWindowClient);
};
« no previous file with comments | « athena/extensions/shell/athena_shell_app_delegate.h ('k') | athena/extensions/shell/athena_shell_scheme_classifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698