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

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

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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') | no next file » | 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 2d69d08f45b06fe0d7eeb0808bf48ac4c874c8ab..7205ce2848e9fdd99a73d9b4496a19012cddf5d9 100644
--- a/content/shell/app/shell_main_delegate.h
+++ b/content/shell/app/shell_main_delegate.h
@@ -24,16 +24,16 @@ class ShellMainDelegate : public ContentMainDelegate {
virtual ~ShellMainDelegate();
// ContentMainDelegate implementation:
- virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
- virtual void PreSandboxStartup() OVERRIDE;
+ 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;
+ const MainFunctionParams& main_function_params) override;
#if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX)
- virtual void ZygoteForked() OVERRIDE;
+ virtual void ZygoteForked() override;
#endif
- virtual ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
- virtual ContentRendererClient* CreateContentRendererClient() OVERRIDE;
+ virtual ContentBrowserClient* CreateContentBrowserClient() override;
+ virtual ContentRendererClient* CreateContentRendererClient() override;
static void InitializeResourceBundle();
« no previous file with comments | « content/shell/app/shell_crash_reporter_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698