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

Unified Diff: chrome/browser/metrics/variations/variations_service_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/metrics/variations/variations_service_unittest.cc
diff --git a/chrome/browser/metrics/variations/variations_service_unittest.cc b/chrome/browser/metrics/variations/variations_service_unittest.cc
index e3700e47f577bee9576926edf4dc3f1f133dafcd..cdf9e49f512d40dec2f2b12b91703b4fc25ebfdd 100644
--- a/chrome/browser/metrics/variations/variations_service_unittest.cc
+++ b/chrome/browser/metrics/variations/variations_service_unittest.cc
@@ -654,7 +654,7 @@ TEST_F(VariationsServiceTest, ValidateStudy) {
}
TEST_F(VariationsServiceTest, RequestsInitiallyNotAllowed) {
- MessageLoopForUI message_loop;
+ base::MessageLoopForUI message_loop;
content::TestBrowserThread ui_thread(content::BrowserThread::UI,
&message_loop);
TestingPrefServiceSimple prefs;
@@ -675,7 +675,7 @@ TEST_F(VariationsServiceTest, RequestsInitiallyNotAllowed) {
}
TEST_F(VariationsServiceTest, RequestsInitiallyAllowed) {
- MessageLoopForUI message_loop;
+ base::MessageLoopForUI message_loop;
content::TestBrowserThread ui_thread(content::BrowserThread::UI,
&message_loop);
TestingPrefServiceSimple prefs;
@@ -692,7 +692,7 @@ TEST_F(VariationsServiceTest, RequestsInitiallyAllowed) {
}
TEST_F(VariationsServiceTest, SeedStoredWhenOKStatus) {
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
content::TestBrowserThread io_thread(content::BrowserThread::IO,
&message_loop);
TestingPrefServiceSimple prefs;
@@ -723,7 +723,7 @@ TEST_F(VariationsServiceTest, SeedNotStoredWhenNonOKStatus) {
net::HTTP_SERVICE_UNAVAILABLE,
};
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
content::TestBrowserThread io_thread(content::BrowserThread::IO,
&message_loop);
TestingPrefServiceSimple prefs;
« no previous file with comments | « chrome/browser/metrics/variations/variations_http_header_provider.cc ('k') | chrome/browser/nacl_host/nacl_browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698