diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 23:11:04 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 23:11:04 +0000 |
commit | 9e7154126cd2e6dc9f7935758d17aea9b8df0dc3 (patch) | |
tree | 2b50814c21f5073b41f36661901b48d73e409be2 /chrome/browser/sync/glue/ui_model_worker.cc | |
parent | e1bcc0207442374ab4d539e6a5623fe4cf1fe8cb (diff) | |
download | chromium_src-9e7154126cd2e6dc9f7935758d17aea9b8df0dc3.zip chromium_src-9e7154126cd2e6dc9f7935758d17aea9b8df0dc3.tar.gz chromium_src-9e7154126cd2e6dc9f7935758d17aea9b8df0dc3.tar.bz2 |
Use base::MessageLoop in more files.
These are either missed in the first pass, or added after the first pass.
TBR=thestig@chromium.org
BUG=236029
Review URL: https://codereview.chromium.org/16092013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/glue/ui_model_worker.cc')
-rw-r--r-- | chrome/browser/sync/glue/ui_model_worker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/glue/ui_model_worker.cc b/chrome/browser/sync/glue/ui_model_worker.cc index c9de1e8..1105c97 100644 --- a/chrome/browser/sync/glue/ui_model_worker.cc +++ b/chrome/browser/sync/glue/ui_model_worker.cc @@ -79,7 +79,7 @@ void UIModelWorker::Stop() { void UIModelWorker::RegisterForLoopDestruction() { CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); - MessageLoop::current()->AddDestructionObserver(this); + base::MessageLoop::current()->AddDestructionObserver(this); } syncer::SyncerError UIModelWorker::DoWorkAndWaitUntilDoneImpl( |