| Index: content/browser/utility_process_host.h
|
| diff --git a/content/browser/utility_process_host.h b/content/browser/utility_process_host.h
|
| index 82969aa1c585eafcf3248bb47319f796372ee5c2..de5361057282a9ca37a22328a914060dd6e2265c 100644
|
| --- a/content/browser/utility_process_host.h
|
| +++ b/content/browser/utility_process_host.h
|
| @@ -54,7 +54,7 @@ class CONTENT_EXPORT UtilityProcessHost : public BrowserChildProcessHost {
|
| virtual ~UtilityProcessHost();
|
|
|
| // BrowserChildProcessHost override
|
| - virtual bool Send(IPC::Message* message);
|
| + virtual bool Send(IPC::Message* message) OVERRIDE;
|
|
|
| // Starts utility process in batch mode. Caller must call EndBatchMode()
|
| // to finish the utility process.
|
| @@ -80,11 +80,11 @@ class CONTENT_EXPORT UtilityProcessHost : public BrowserChildProcessHost {
|
| bool StartProcess();
|
|
|
| // IPC messages:
|
| - virtual bool OnMessageReceived(const IPC::Message& message);
|
| + virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
|
|
| // BrowserChildProcessHost:
|
| - virtual void OnProcessCrashed(int exit_code);
|
| - virtual bool CanShutdown();
|
| + virtual void OnProcessCrashed(int exit_code) OVERRIDE;
|
| + virtual bool CanShutdown() OVERRIDE;
|
|
|
| // A pointer to our client interface, who will be informed of progress.
|
| scoped_refptr<Client> client_;
|
|
|