diff options
author | ki.stfu <ki.stfu@gmail.com> | 2015-10-12 10:45:55 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-12 17:46:28 +0000 |
commit | 55e0b3620524432d77cd3f707acd6ed470c2f1c9 (patch) | |
tree | 8231960c6db1b436d22655ee27ceb2506bfa249e /ash/shell/shell_delegate_impl.cc | |
parent | 63b95c0e56fba8908ecdeff90507f3b954dafa1a (diff) | |
download | chromium_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.cc | 2 |
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() { |