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

Unified Diff: extensions/shell/app/shell_main_delegate.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 | « no previous file | extensions/shell/browser/api/shell_identity/shell_identity_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/shell/app/shell_main_delegate.h
diff --git a/extensions/shell/app/shell_main_delegate.h b/extensions/shell/app/shell_main_delegate.h
index 7e5aea9ef432c3384aa3b69e9973159261041f60..11eba41bdf4b168b6df501aa25456f71fde51e85 100644
--- a/extensions/shell/app/shell_main_delegate.h
+++ b/extensions/shell/app/shell_main_delegate.h
@@ -22,16 +22,15 @@ class ShellBrowserMainDelegate;
class ShellMainDelegate : public content::ContentMainDelegate {
public:
ShellMainDelegate();
- virtual ~ShellMainDelegate();
+ ~ShellMainDelegate() override;
// ContentMainDelegate implementation:
- virtual bool BasicStartupComplete(int* exit_code) override;
- virtual void PreSandboxStartup() override;
- virtual content::ContentBrowserClient* CreateContentBrowserClient() override;
- virtual content::ContentRendererClient* CreateContentRendererClient()
- override;
+ bool BasicStartupComplete(int* exit_code) override;
+ void PreSandboxStartup() override;
+ content::ContentBrowserClient* CreateContentBrowserClient() override;
+ content::ContentRendererClient* CreateContentRendererClient() override;
#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
- virtual void ZygoteStarting(
+ void ZygoteStarting(
ScopedVector<content::ZygoteForkDelegate>* delegates) override;
#endif
« no previous file with comments | « no previous file | extensions/shell/browser/api/shell_identity/shell_identity_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698