diff options
Diffstat (limited to 'chrome/browser/google_apis/base_operations_server_unittest.cc')
-rw-r--r-- | chrome/browser/google_apis/base_operations_server_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/google_apis/base_operations_server_unittest.cc b/chrome/browser/google_apis/base_operations_server_unittest.cc index 2cb2488..29b50bb 100644 --- a/chrome/browser/google_apis/base_operations_server_unittest.cc +++ b/chrome/browser/google_apis/base_operations_server_unittest.cc @@ -73,7 +73,7 @@ class BaseOperationsServerTest : public testing::Test { return profile_->GetPath().Append(file_name); } - MessageLoopForUI message_loop_; + base::MessageLoopForUI message_loop_; content::TestBrowserThread ui_thread_; content::TestBrowserThread file_thread_; content::TestBrowserThread io_thread_; @@ -104,7 +104,7 @@ TEST_F(BaseOperationsServerTest, DownloadFileOperation_ValidFile) { GetTestCachedFilePath( base::FilePath::FromUTF8Unsafe("cached_testfile.txt"))); operation_runner_->StartOperationWithRetry(operation); - MessageLoop::current()->Run(); + base::MessageLoop::current()->Run(); std::string contents; file_util::ReadFileToString(temp_file, &contents); @@ -139,7 +139,7 @@ TEST_F(BaseOperationsServerTest, GetTestCachedFilePath( base::FilePath::FromUTF8Unsafe("cache_no-such-file.txt"))); operation_runner_->StartOperationWithRetry(operation); - MessageLoop::current()->Run(); + base::MessageLoop::current()->Run(); std::string contents; file_util::ReadFileToString(temp_file, &contents); |