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

Unified Diff: chrome/browser/safe_browsing/client_side_detection_service_unittest.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/client_side_detection_service_unittest.cc
diff --git a/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc b/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc
index ed533604b472541b9d48a8fd798c609c334251e6..2e29c454c1a3adcfc175b1ffaec6c0201d26ae08 100644
--- a/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc
+++ b/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc
@@ -54,7 +54,7 @@ class MockClientSideDetectionService : public ClientSideDetectionService {
};
ACTION(QuitCurrentMessageLoop) {
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
} // namespace
@@ -212,7 +212,7 @@ class ClientSideDetectionServiceTest : public testing::Test {
protected:
scoped_ptr<ClientSideDetectionService> csd_service_;
scoped_ptr<net::FakeURLFetcherFactory> factory_;
- MessageLoop msg_loop_;
+ base::MessageLoop msg_loop_;
private:
void SendRequestDone(GURL phishing_url, bool is_phishing) {

Powered by Google App Engine
This is Rietveld 408576698