diff options
author | ki.stfu <ki.stfu@gmail.com> | 2015-10-13 06:00:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-13 13:01:29 +0000 |
commit | 15b41157b2c8f731195a6563cc53cf2758a6d0f7 (patch) | |
tree | 95f4c22cb7d2afb65b8dc9a427e3291a72fb8312 /components/html_viewer/ax_provider_impl_unittest.cc | |
parent | 296904a411a417c91fa561ff049e6e4404deeaa3 (diff) | |
download | chromium_src-15b41157b2c8f731195a6563cc53cf2758a6d0f7.zip chromium_src-15b41157b2c8f731195a6563cc53cf2758a6d0f7.tar.gz chromium_src-15b41157b2c8f731195a6563cc53cf2758a6d0f7.tar.bz2 |
Don't use base::MessageLoop::{Quit,QuitClosure} in components/
This patch renames base::MessageLoop::{Quit,QuitClosure} to
base::MessageLoop::{QuitWhenIdle,QuitWhenIdleClosure}.
BUG=131220
R=blundell@chromium.org
Review URL: https://codereview.chromium.org/1402553002
Cr-Commit-Position: refs/heads/master@{#353726}
Diffstat (limited to 'components/html_viewer/ax_provider_impl_unittest.cc')
-rw-r--r-- | components/html_viewer/ax_provider_impl_unittest.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/html_viewer/ax_provider_impl_unittest.cc b/components/html_viewer/ax_provider_impl_unittest.cc index 5b22ef2..ebad0b4 100644 --- a/components/html_viewer/ax_provider_impl_unittest.cc +++ b/components/html_viewer/ax_provider_impl_unittest.cc @@ -35,7 +35,9 @@ namespace { class TestWebFrameClient : public WebFrameClient { public: ~TestWebFrameClient() override {} - void didStopLoading() override { base::MessageLoop::current()->Quit(); } + void didStopLoading() override { + base::MessageLoop::current()->QuitWhenIdle(); + } }; class TestWebViewClient : public WebViewClient { |