summaryrefslogtreecommitdiffstats
path: root/ash/shell/shell_delegate_impl.cc
diff options
context:
space:
mode:
authorki.stfu <ki.stfu@gmail.com>2015-10-12 10:45:55 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-12 17:46:28 +0000
commit55e0b3620524432d77cd3f707acd6ed470c2f1c9 (patch)
tree8231960c6db1b436d22655ee27ceb2506bfa249e /ash/shell/shell_delegate_impl.cc
parent63b95c0e56fba8908ecdeff90507f3b954dafa1a (diff)
downloadchromium_src-55e0b3620524432d77cd3f707acd6ed470c2f1c9.zip
chromium_src-55e0b3620524432d77cd3f707acd6ed470c2f1c9.tar.gz
chromium_src-55e0b3620524432d77cd3f707acd6ed470c2f1c9.tar.bz2
Don't use base::MessageLoop::{Quit,QuitClosure} in ash/, chromeos/, device/
This patch renames base::MessageLoop::{Quit,QuitClosure} to base::MessageLoop::{QuitWhenIdle,QuitWhenIdleClosure}. BUG=131220 TEST= R=oshima@chromium.org,stevenjb@chromium.org,reillyg@chromium.org Review URL: https://codereview.chromium.org/1396083003 Cr-Commit-Position: refs/heads/master@{#353548}
Diffstat (limited to 'ash/shell/shell_delegate_impl.cc')
-rw-r--r--ash/shell/shell_delegate_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/shell/shell_delegate_impl.cc b/ash/shell/shell_delegate_impl.cc
index 7618cd7..e87aab0 100644
--- a/ash/shell/shell_delegate_impl.cc
+++ b/ash/shell/shell_delegate_impl.cc
@@ -184,7 +184,7 @@ void ShellDelegateImpl::PreShutdown() {
}
void ShellDelegateImpl::Exit() {
- base::MessageLoopForUI::current()->Quit();
+ base::MessageLoopForUI::current()->QuitWhenIdle();
}
keyboard::KeyboardUI* ShellDelegateImpl::CreateKeyboardUI() {