| Index: chrome/browser/service_process/service_process_control.h
|
| diff --git a/chrome/browser/service_process/service_process_control.h b/chrome/browser/service_process/service_process_control.h
|
| index 5eb867d5ea56804effdcb183438fbfbda965069c..2bc6d69b7fee1a7507fe9241230666fbe9ef9513 100644
|
| --- a/chrome/browser/service_process/service_process_control.h
|
| +++ b/chrome/browser/service_process/service_process_control.h
|
| @@ -145,8 +145,7 @@ class ServiceProcessControl : public IPC::Sender,
|
| class Launcher
|
| : public base::RefCountedThreadSafe<ServiceProcessControl::Launcher> {
|
| public:
|
| - Launcher(ServiceProcessControl* process,
|
| - scoped_ptr<base::CommandLine> cmd_line);
|
| + explicit Launcher(scoped_ptr<base::CommandLine> cmd_line);
|
| // Execute the command line to start the process asynchronously. After the
|
| // command is executed |task| is called with the process handle on the UI
|
| // thread.
|
| @@ -164,7 +163,6 @@ class ServiceProcessControl : public IPC::Sender,
|
|
|
| void DoRun();
|
| void Notify();
|
| - ServiceProcessControl* process_control_;
|
| scoped_ptr<base::CommandLine> cmd_line_;
|
| base::Closure notify_task_;
|
| bool launched_;
|
|
|