Index: chrome/browser/profile_resetter/profile_resetter_unittest.cc |
diff --git a/chrome/browser/profile_resetter/profile_resetter_unittest.cc b/chrome/browser/profile_resetter/profile_resetter_unittest.cc |
index f976ec67f54a08d70459fe3d1814cf351b0365a7..10b08f7ea9f8c7dd39957077beca5c6bc30e1da0 100644 |
--- a/chrome/browser/profile_resetter/profile_resetter_unittest.cc |
+++ b/chrome/browser/profile_resetter/profile_resetter_unittest.cc |
@@ -216,7 +216,7 @@ class ConfigParserTest : public testing::Test { |
MOCK_METHOD0(Callback, void(void)); |
- base::MessageLoop loop_; |
+ base::MessageLoopForIO loop_; |
content::TestBrowserThread ui_thread_; |
content::TestBrowserThread io_thread_; |
URLFetcherRequestListener request_listener_; |
@@ -224,8 +224,7 @@ class ConfigParserTest : public testing::Test { |
}; |
ConfigParserTest::ConfigParserTest() |
- : loop_(base::MessageLoop::TYPE_IO), |
- ui_thread_(content::BrowserThread::UI, &loop_), |
+ : ui_thread_(content::BrowserThread::UI, &loop_), |
io_thread_(content::BrowserThread::IO, &loop_), |
factory_(NULL, base::Bind(&ConfigParserTest::CreateFakeURLFetcher, |
base::Unretained(this))) { |