| Index: chrome/browser/service/service_process_control_mac.mm
|
| diff --git a/chrome/browser/service/service_process_control_mac.mm b/chrome/browser/service/service_process_control_mac.mm
|
| index d11acaaec47f4ccfcda387802ec28ede1daa1df0..684c82f01f752c5d1adce8ed059b23911d3bc4f6 100644
|
| --- a/chrome/browser/service/service_process_control_mac.mm
|
| +++ b/chrome/browser/service/service_process_control_mac.mm
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/browser/service/service_process_control.h"
|
|
|
| +#include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/mac/scoped_cftyperef.h"
|
| #include "chrome/common/service_process_util_posix.h"
|
| @@ -21,5 +22,5 @@ void ServiceProcessControl::Launcher::DoRun() {
|
| launched_ = true;
|
| }
|
| BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
|
| - NewRunnableMethod(this, &Launcher::Notify));
|
| + base::Bind(&Launcher::Notify, this));
|
| }
|
|
|