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

Unified Diff: content/browser/browser_child_process_host_impl.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/browser/bootstrap_sandbox_mac.cc ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_child_process_host_impl.h
diff --git a/content/browser/browser_child_process_host_impl.h b/content/browser/browser_child_process_host_impl.h
index b196551532e987d243ef1386d2947878386af4be..bce1832afa6336b2116c9ac46850c1be83819f9f 100644
--- a/content/browser/browser_child_process_host_impl.h
+++ b/content/browser/browser_child_process_host_impl.h
@@ -45,25 +45,25 @@ class CONTENT_EXPORT BrowserChildProcessHostImpl
static void TerminateAll();
// BrowserChildProcessHost implementation:
- virtual bool Send(IPC::Message* message) OVERRIDE;
+ virtual bool Send(IPC::Message* message) override;
virtual void Launch(
SandboxedProcessLauncherDelegate* delegate,
- base::CommandLine* cmd_line) OVERRIDE;
- virtual const ChildProcessData& GetData() const OVERRIDE;
- virtual ChildProcessHost* GetHost() const OVERRIDE;
+ base::CommandLine* cmd_line) override;
+ virtual const ChildProcessData& GetData() const override;
+ virtual ChildProcessHost* GetHost() const override;
virtual base::TerminationStatus GetTerminationStatus(
- bool known_dead, int* exit_code) OVERRIDE;
- virtual void SetName(const base::string16& name) OVERRIDE;
- virtual void SetHandle(base::ProcessHandle handle) OVERRIDE;
+ bool known_dead, int* exit_code) override;
+ virtual void SetName(const base::string16& name) override;
+ virtual void SetHandle(base::ProcessHandle handle) override;
// ChildProcessHostDelegate implementation:
- virtual bool CanShutdown() OVERRIDE;
- virtual void OnChildDisconnected() OVERRIDE;
- virtual base::ProcessHandle GetHandle() const OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
- virtual void OnChannelError() OVERRIDE;
- virtual void OnBadMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool CanShutdown() override;
+ virtual void OnChildDisconnected() override;
+ virtual base::ProcessHandle GetHandle() const override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void OnChannelConnected(int32 peer_pid) override;
+ virtual void OnChannelError() override;
+ virtual void OnBadMessageReceived(const IPC::Message& message) override;
// Removes this host from the host list. Calls ChildProcessHost::ForceShutdown
void ForceShutdown();
@@ -96,8 +96,8 @@ class CONTENT_EXPORT BrowserChildProcessHostImpl
static void RemoveObserver(BrowserChildProcessObserver* observer);
// ChildProcessLauncher::Client implementation.
- virtual void OnProcessLaunched() OVERRIDE;
- virtual void OnProcessLaunchFailed() OVERRIDE;
+ virtual void OnProcessLaunched() override;
+ virtual void OnProcessLaunchFailed() override;
#if defined(OS_WIN)
void DeleteProcessWaitableEvent(base::WaitableEvent* event);
« no previous file with comments | « content/browser/bootstrap_sandbox_mac.cc ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698