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

Unified Diff: chrome/app/chrome_main_delegate.h

Issue 644903002: Replacing the OVERRIDE with override and in chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Extrafile added 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 | « chrome/app/chrome_crash_reporter_client.h ('k') | chrome/app/client_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_main_delegate.h
diff --git a/chrome/app/chrome_main_delegate.h b/chrome/app/chrome_main_delegate.h
index fb290519890436d7fc964df8f9261d6a369fef14..08b7715e44c695b2e693c0f63387656b29524876 100644
--- a/chrome/app/chrome_main_delegate.h
+++ b/chrome/app/chrome_main_delegate.h
@@ -25,32 +25,32 @@ class ChromeMainDelegate : public content::ContentMainDelegate {
protected:
// content::ContentMainDelegate implementation:
- virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
- virtual void PreSandboxStartup() OVERRIDE;
- virtual void SandboxInitialized(const std::string& process_type) OVERRIDE;
+ virtual bool BasicStartupComplete(int* exit_code) override;
+ virtual void PreSandboxStartup() override;
+ virtual void SandboxInitialized(const std::string& process_type) override;
virtual int RunProcess(
const std::string& process_type,
- const content::MainFunctionParams& main_function_params) OVERRIDE;
- virtual void ProcessExiting(const std::string& process_type) OVERRIDE;
+ const content::MainFunctionParams& main_function_params) override;
+ virtual void ProcessExiting(const std::string& process_type) override;
#if defined(OS_MACOSX)
virtual bool ProcessRegistersWithSystemProcess(
- const std::string& process_type) OVERRIDE;
- virtual bool ShouldSendMachPort(const std::string& process_type) OVERRIDE;
+ const std::string& process_type) override;
+ virtual bool ShouldSendMachPort(const std::string& process_type) override;
virtual bool DelaySandboxInitialization(
- const std::string& process_type) OVERRIDE;
+ const std::string& process_type) override;
#elif defined(OS_POSIX) && !defined(OS_ANDROID)
virtual void ZygoteStarting(
- ScopedVector<content::ZygoteForkDelegate>* delegates) OVERRIDE;
- virtual void ZygoteForked() OVERRIDE;
+ ScopedVector<content::ZygoteForkDelegate>* delegates) override;
+ virtual void ZygoteForked() override;
#elif defined(OS_WIN)
- virtual bool ShouldEnableTerminationOnHeapCorruption() OVERRIDE;
+ virtual bool ShouldEnableTerminationOnHeapCorruption() override;
#endif
- virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
- virtual content::ContentPluginClient* CreateContentPluginClient() OVERRIDE;
+ virtual content::ContentBrowserClient* CreateContentBrowserClient() override;
+ virtual content::ContentPluginClient* CreateContentPluginClient() override;
virtual content::ContentRendererClient*
- CreateContentRendererClient() OVERRIDE;
- virtual content::ContentUtilityClient* CreateContentUtilityClient() OVERRIDE;
+ CreateContentRendererClient() override;
+ virtual content::ContentUtilityClient* CreateContentUtilityClient() override;
#if defined(OS_MACOSX)
void InitMacCrashReporter(const base::CommandLine& command_line,
« no previous file with comments | « chrome/app/chrome_crash_reporter_client.h ('k') | chrome/app/client_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698