Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1397)

Unified Diff: chrome/browser/search_engines/template_url_fetcher_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/search_engines/template_url_fetcher_unittest.cc
diff --git a/chrome/browser/search_engines/template_url_fetcher_unittest.cc b/chrome/browser/search_engines/template_url_fetcher_unittest.cc
index 765660be7623aedb1f8dfacafe28c3b53bd9025f..bfb6cdf4c2feff9f638739f2d8387f62e6e133a5 100644
--- a/chrome/browser/search_engines/template_url_fetcher_unittest.cc
+++ b/chrome/browser/search_engines/template_url_fetcher_unittest.cc
@@ -120,7 +120,7 @@ void TemplateURLFetcherTest::DestroyedCallback(
TemplateURLFetcherTestCallbacks* callbacks) {
callbacks_destroyed_++;
if (waiting_for_download_)
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
void TemplateURLFetcherTest::ConfirmAddSearchProvider(
@@ -156,7 +156,7 @@ void TemplateURLFetcherTest::StartDownload(
void TemplateURLFetcherTest::WaitForDownloadToFinish() {
ASSERT_FALSE(waiting_for_download_);
waiting_for_download_ = true;
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
waiting_for_download_ = false;
}

Powered by Google App Engine
This is Rietveld 408576698