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

Unified Diff: chrome/browser/captive_portal/captive_portal_detector_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/captive_portal/captive_portal_detector_unittest.cc
diff --git a/chrome/browser/captive_portal/captive_portal_detector_unittest.cc b/chrome/browser/captive_portal/captive_portal_detector_unittest.cc
index 568af8bc9ed183bfd37e010f9af2552bffe449c9..c0c18063ab15588034fc1ad8f23a066bcceb29e4 100644
--- a/chrome/browser/captive_portal/captive_portal_detector_unittest.cc
+++ b/chrome/browser/captive_portal/captive_portal_detector_unittest.cc
@@ -72,7 +72,7 @@ class CaptivePortalDetectorTest : public testing::Test,
base::Unretained(&client)));
ASSERT_TRUE(FetchingURL());
- MessageLoop::current()->RunUntilIdle();
+ base::MessageLoop::current()->RunUntilIdle();
CompleteURLFetch(net_error, status_code, response_headers);
@@ -96,7 +96,7 @@ class CaptivePortalDetectorTest : public testing::Test,
base::Unretained(&client)));
ASSERT_TRUE(FetchingURL());
- MessageLoop::current()->RunUntilIdle();
+ base::MessageLoop::current()->RunUntilIdle();
detector()->Cancel();
@@ -105,7 +105,7 @@ class CaptivePortalDetectorTest : public testing::Test,
}
private:
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
// Definition order does matter.
TestingProfile profile_;

Powered by Google App Engine
This is Rietveld 408576698