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

Unified Diff: content/shell/app/shell_main_delegate.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 | « content/shell/app/shell_crash_reporter_client.h ('k') | content/shell/browser/ipc_echo_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_main_delegate.h
diff --git a/content/shell/app/shell_main_delegate.h b/content/shell/app/shell_main_delegate.h
index 7205ce2848e9fdd99a73d9b4496a19012cddf5d9..baa19e9199cd929ea9ade62a140b88dc01ae7637 100644
--- a/content/shell/app/shell_main_delegate.h
+++ b/content/shell/app/shell_main_delegate.h
@@ -21,19 +21,18 @@ class BrowserMainRunner;
class ShellMainDelegate : public ContentMainDelegate {
public:
ShellMainDelegate();
- virtual ~ShellMainDelegate();
+ ~ShellMainDelegate() override;
// ContentMainDelegate implementation:
- virtual bool BasicStartupComplete(int* exit_code) override;
- virtual void PreSandboxStartup() override;
- virtual int RunProcess(
- const std::string& process_type,
- const MainFunctionParams& main_function_params) override;
+ bool BasicStartupComplete(int* exit_code) override;
+ void PreSandboxStartup() override;
+ int RunProcess(const std::string& process_type,
+ const MainFunctionParams& main_function_params) override;
#if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX)
virtual void ZygoteForked() override;
#endif
- virtual ContentBrowserClient* CreateContentBrowserClient() override;
- virtual ContentRendererClient* CreateContentRendererClient() override;
+ ContentBrowserClient* CreateContentBrowserClient() override;
+ ContentRendererClient* CreateContentRendererClient() override;
static void InitializeResourceBundle();
« no previous file with comments | « content/shell/app/shell_crash_reporter_client.h ('k') | content/shell/browser/ipc_echo_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698