| Index: chrome/common/service_process_util_mac.mm
|
| diff --git a/chrome/common/service_process_util_mac.mm b/chrome/common/service_process_util_mac.mm
|
| index 3ad15a6f4f674fc2fc53ee1f3acd001cfb56dac9..c38e88727253cbfe623352b886b06b1d86709773 100644
|
| --- a/chrome/common/service_process_util_mac.mm
|
| +++ b/chrome/common/service_process_util_mac.mm
|
| @@ -179,7 +179,6 @@ bool ServiceProcessState::Initialize() {
|
| return false;
|
| }
|
| state_->launchd_conf_.reset(dict);
|
| - state_->ui_message_loop_= base::MessageLoopProxy::CreateForCurrentThread();
|
| return true;
|
| }
|
|
|
| @@ -323,9 +322,7 @@ bool ServiceProcessState::StateData::WatchExecutable() {
|
| LOG(ERROR) << "executable_watcher_.Init " << executable_path.value();
|
| return false;
|
| }
|
| - if (!executable_watcher_.Watch(executable_path,
|
| - delegate.release(),
|
| - ui_message_loop_)) {
|
| + if (!executable_watcher_.Watch(executable_path, delegate.release())) {
|
| LOG(ERROR) << "executable_watcher_.watch " << executable_path.value();
|
| return false;
|
| }
|
|
|