Index: chrome/browser/chromeos/settings/device_settings_test_helper.cc |
diff --git a/chrome/browser/chromeos/settings/device_settings_test_helper.cc b/chrome/browser/chromeos/settings/device_settings_test_helper.cc |
index b2a97858c536f686a3fa889be018b512193e47d3..4f9bd0053f8390e70945ecb27e5446b20a46ef5e 100644 |
--- a/chrome/browser/chromeos/settings/device_settings_test_helper.cc |
+++ b/chrome/browser/chromeos/settings/device_settings_test_helper.cc |
@@ -23,10 +23,10 @@ void DeviceSettingsTestHelper::FlushLoops() { |
// between the message loop and the blocking pool. 2 iterations are currently |
// sufficient (key loading, signing). |
for (int i = 0; i < 2; ++i) { |
- MessageLoop::current()->RunUntilIdle(); |
+ base::MessageLoop::current()->RunUntilIdle(); |
content::BrowserThread::GetBlockingPool()->FlushForTesting(); |
} |
- MessageLoop::current()->RunUntilIdle(); |
+ base::MessageLoop::current()->RunUntilIdle(); |
} |
void DeviceSettingsTestHelper::FlushStore() { |
@@ -180,7 +180,7 @@ ScopedDeviceSettingsTestHelper::~ScopedDeviceSettingsTestHelper() { |
} |
DeviceSettingsTestBase::DeviceSettingsTestBase() |
- : loop_(MessageLoop::TYPE_UI), |
+ : loop_(base::MessageLoop::TYPE_UI), |
ui_thread_(content::BrowserThread::UI, &loop_), |
file_thread_(content::BrowserThread::FILE, &loop_), |
owner_key_util_(new MockOwnerKeyUtil()) {} |