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/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));