| Index: content/browser/browser_child_process_host.h
|
| diff --git a/content/browser/browser_child_process_host.h b/content/browser/browser_child_process_host.h
|
| index 092bf0dc49541b512bc38e7f4c390d5c9826fbb6..1dbcb565660ce0955672556b957ed1401cfc1494 100644
|
| --- a/content/browser/browser_child_process_host.h
|
| +++ b/content/browser/browser_child_process_host.h
|
| @@ -76,7 +76,7 @@ class CONTENT_EXPORT BrowserChildProcessHost :
|
| base::ProcessHandle GetChildProcessHandle() const;
|
|
|
| // ChildProcessLauncher::Client implementation.
|
| - virtual void OnProcessLaunched() {}
|
| + virtual void OnProcessLaunched() OVERRIDE {}
|
|
|
| // Derived classes can override this to know if the process crashed.
|
| // |exit_code| is the status returned when the process crashed (for
|
| @@ -118,7 +118,7 @@ class CONTENT_EXPORT BrowserChildProcessHost :
|
| class ClientHook : public ChildProcessLauncher::Client {
|
| public:
|
| explicit ClientHook(BrowserChildProcessHost* host);
|
| - virtual void OnProcessLaunched();
|
| + virtual void OnProcessLaunched() OVERRIDE;
|
| private:
|
| BrowserChildProcessHost* host_;
|
| };
|
|
|