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

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: Created 7 years, 8 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 9a312db62f673899d32c575a398a20891dba3277..7a1b7264b91d2ab6891d9eb72f77848dd6fd75e1 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