Use base::MessageLoop in more files.

These are either missed in the first pass, or added after the first pass.

[email protected]
BUG=236029

Review URL: https://codereview.chromium.org/16092013

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203259 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/webkit/browser/blob/blob_storage_context_unittest.cc b/webkit/browser/blob/blob_storage_context_unittest.cc
index e462b95..ef24bdc 100644
--- a/webkit/browser/blob/blob_storage_context_unittest.cc
+++ b/webkit/browser/blob/blob_storage_context_unittest.cc
@@ -28,7 +28,7 @@
 TEST(BlobStorageContextTest, IncrementDecrementRef) {
   BlobStorageContext context;
   BlobStorageHost host(&context);
-  MessageLoop fake_io_message_loop;
+  base::MessageLoop fake_io_message_loop;
 
   // Build up a basic blob.
   const std::string kId("id");
@@ -58,7 +58,7 @@
 TEST(BlobStorageContextTest, BlobDataHandle) {
   BlobStorageContext context;
   BlobStorageHost host(&context);
-  MessageLoop fake_io_message_loop;
+  base::MessageLoop fake_io_message_loop;
 
   // Build up a basic blob.
   const std::string kId("id");
@@ -89,7 +89,7 @@
   const std::string kId2("id2");
   const std::string kId2Prime("id2.prime");
 
-  MessageLoop fake_io_message_loop;
+  base::MessageLoop fake_io_message_loop;
 
   // Setup a set of blob data for testing.
   base::Time time1, time2;
@@ -134,7 +134,7 @@
 TEST(BlobStorageContextTest, PublicBlobUrls) {
   BlobStorageContext context;
   BlobStorageHost host(&context);
-  MessageLoop fake_io_message_loop;
+  base::MessageLoop fake_io_message_loop;
 
   // Build up a basic blob.
   const std::string kId("id");
@@ -166,7 +166,7 @@
 TEST(BlobStorageContextTest, HostCleanup) {
   BlobStorageContext context;
   scoped_ptr<BlobStorageHost> host(new BlobStorageHost(&context));
-  MessageLoop fake_io_message_loop;
+  base::MessageLoop fake_io_message_loop;
 
   // Build up a basic blob and register a url
   const std::string kId("id");
@@ -185,7 +185,7 @@
 TEST(BlobStorageContextTest, EarlyContextDeletion) {
   scoped_ptr<BlobStorageContext> context(new BlobStorageContext);
   BlobStorageHost host(context.get());
-  MessageLoop fake_io_message_loop;
+  base::MessageLoop fake_io_message_loop;
 
   // Deleting the context should not induce crashes.
   context.reset();
diff --git a/webkit/browser/fileapi/transient_file_util_unittest.cc b/webkit/browser/fileapi/transient_file_util_unittest.cc
index 69d2c0a..58a8046 100644
--- a/webkit/browser/fileapi/transient_file_util_unittest.cc
+++ b/webkit/browser/fileapi/transient_file_util_unittest.cc
@@ -34,7 +34,7 @@
 
   virtual void TearDown() OVERRIDE {
     file_system_context_ = NULL;
-    MessageLoop::current()->RunUntilIdle();
+    base::MessageLoop::current()->RunUntilIdle();
   }
 
   void CreateAndRegisterTemporaryFile(
@@ -65,7 +65,7 @@
   FileSystemFileUtil* file_util() { return transient_file_util_.get(); }
 
  private:
-  MessageLoop message_loop_;
+  base::MessageLoop message_loop_;
   base::ScopedTempDir data_dir_;
   scoped_refptr<FileSystemContext> file_system_context_;
   scoped_ptr<TransientFileUtil> transient_file_util_;
@@ -110,7 +110,7 @@
   }
 
   // The file's now scoped out.
-  MessageLoop::current()->RunUntilIdle();
+  base::MessageLoop::current()->RunUntilIdle();
 
   // Now the temporary file and the transient filesystem must be gone too.
   ASSERT_FALSE(file_util::PathExists(temp_path));