From ac914e1f195dd4ef085e27352e04e02245ca7f31 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 21 Nov 2014 16:40:47 +0800 Subject: [PATCH] OVERRODE => override in atom_main_delegate.h --- atom/app/atom_main_delegate.h | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/atom/app/atom_main_delegate.h b/atom/app/atom_main_delegate.h index 9988153766eb..8cd4a28ee1c0 100644 --- a/atom/app/atom_main_delegate.h +++ b/atom/app/atom_main_delegate.h @@ -17,19 +17,18 @@ class AtomMainDelegate : public brightray::MainDelegate { protected: // content::ContentMainDelegate: - 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; // brightray::MainDelegate: - virtual scoped_ptr CreateContentClient() OVERRIDE; - virtual void AddDataPackFromPath( - ui::ResourceBundle* bundle, const base::FilePath& pak_dir) OVERRIDE; + scoped_ptr CreateContentClient() override; + void AddDataPackFromPath( + ui::ResourceBundle* bundle, const base::FilePath& pak_dir) override; #if defined(OS_MACOSX) - virtual void OverrideChildProcessPath() OVERRIDE; - virtual void OverrideFrameworkBundlePath() OVERRIDE; + void OverrideChildProcessPath() override; + void OverrideFrameworkBundlePath() override; #endif private: