| 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 bcce8ce16920c5e1da92e76d7c6dd3d2796b6407..508de87e4d105fb686be815f81eb41654b8c8544 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() {
|
| @@ -186,7 +186,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()) {}
|
|
|