| 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 db9d88489892e96fa2decfc3469fb043d5a01d4a..a69c7ac8f057052a25139779da98f08d701a34fc 100644
|
| --- a/chrome/service/service_utility_process_host.h
|
| +++ b/chrome/service/service_utility_process_host.h
|
| @@ -85,7 +85,7 @@ class ServiceUtilityProcessHost : public content::ChildProcessHostDelegate {
|
|
|
| ServiceUtilityProcessHost(Client* client,
|
| base::MessageLoopProxy* client_message_loop_proxy);
|
| - virtual ~ServiceUtilityProcessHost();
|
| + ~ServiceUtilityProcessHost() override;
|
|
|
| // Starts a process to render the specified pages in the given PDF file into
|
| // a metafile. Currently only implemented for Windows. If the PDF has fewer
|
| @@ -113,9 +113,9 @@ class ServiceUtilityProcessHost : public content::ChildProcessHostDelegate {
|
| virtual base::FilePath GetUtilityProcessCmd();
|
|
|
| // ChildProcessHostDelegate implementation:
|
| - virtual void OnChildDisconnected() override;
|
| - virtual bool OnMessageReceived(const IPC::Message& message) override;
|
| - virtual const base::Process& GetProcess() const override;
|
| + void OnChildDisconnected() override;
|
| + bool OnMessageReceived(const IPC::Message& message) override;
|
| + const base::Process& GetProcess() const override;
|
|
|
| private:
|
| // Starts a process. Returns true iff it succeeded.
|
|
|