diff options
Diffstat (limited to 'content/browser/browser_child_process_host.h')
-rw-r--r-- | content/browser/browser_child_process_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/browser_child_process_host.h b/content/browser/browser_child_process_host.h index 092bf0d..1dbcb56 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_; }; |