| Index: chrome/service/service_utility_process_host.h
|
| diff --git a/chrome/service/service_utility_process_host.h b/chrome/service/service_utility_process_host.h
|
| index 9811ed929bc4189a78421ad64ab877cf2aa79385..8e49a3d5f11e3b1a4a67071cfde9cbd0496917b5 100644
|
| --- a/chrome/service/service_utility_process_host.h
|
| +++ b/chrome/service/service_utility_process_host.h
|
| @@ -106,8 +106,8 @@ class ServiceUtilityProcessHost : public ServiceChildProcessHost {
|
| virtual FilePath GetUtilityProcessCmd();
|
|
|
| // Overriden from ChildProcessHost.
|
| - virtual bool CanShutdown();
|
| - virtual void OnChildDied();
|
| + virtual bool CanShutdown() OVERRIDE;
|
| + virtual void OnChildDied() OVERRIDE;
|
|
|
| private:
|
| // Starts a process. Returns true iff it succeeded. |exposed_dir| is the
|
| @@ -116,7 +116,7 @@ class ServiceUtilityProcessHost : public ServiceChildProcessHost {
|
| bool StartProcess(bool no_sandbox, const FilePath& exposed_dir);
|
|
|
| // IPC messages:
|
| - virtual bool OnMessageReceived(const IPC::Message& message);
|
| + virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| // Called when at least one page in the specified PDF has been rendered
|
| // successfully into metafile_path_;
|
| void OnRenderPDFPagesToMetafileSucceeded(int highest_rendered_page_number);
|
|
|