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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_blocking_page_test.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/safe_browsing/safe_browsing_blocking_page_test.cc
diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc b/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
index 6eb42fed5b64a1418ec7eb3c0657765ffaa45e18..0ba350d61f20169f214a9f09e96c1bc3213406d6 100644
--- a/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
@@ -133,7 +133,7 @@ class FakeSafeBrowsingUIManager : public SafeBrowsingUIManager {
void OnMalwareDetailsDone() {
EXPECT_TRUE(BrowserThread::CurrentlyOn(BrowserThread::UI));
- MessageLoopForUI::current()->Quit();
+ base::MessageLoopForUI::current()->Quit();
}
std::string GetReport() {
@@ -247,7 +247,7 @@ class FakeMalwareDetails : public MalwareDetails {
void OnDOMDetailsDone() {
got_dom_ = true;
if (waiting_) {
- MessageLoopForUI::current()->Quit();
+ base::MessageLoopForUI::current()->Quit();
}
}
@@ -296,7 +296,7 @@ class TestSafeBrowsingBlockingPage : public SafeBrowsingBlockingPageV2 {
return;
// Notify that we are gone
- MessageLoopForUI::current()->Quit();
+ base::MessageLoopForUI::current()->Quit();
wait_for_delete_ = false;
}

Powered by Google App Engine
This is Rietveld 408576698