Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Unified Diff: webkit/browser/fileapi/transient_file_util_unittest.cc

Issue 16092013: Use base::MessageLoop in more files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again, sigh Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/browser/blob/blob_storage_context_unittest.cc ('k') | webkit/tools/test_shell/simple_file_system.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/transient_file_util_unittest.cc
diff --git a/webkit/browser/fileapi/transient_file_util_unittest.cc b/webkit/browser/fileapi/transient_file_util_unittest.cc
index 69d2c0a39980ab577b3bb1153918fb6e7b29521d..58a8046f0ee0c44d3d539b3ab4160bb6de29e158 100644
--- a/webkit/browser/fileapi/transient_file_util_unittest.cc
+++ b/webkit/browser/fileapi/transient_file_util_unittest.cc
@@ -34,7 +34,7 @@ class TransientFileUtilTest : public testing::Test {
virtual void TearDown() OVERRIDE {
file_system_context_ = NULL;
- MessageLoop::current()->RunUntilIdle();
+ base::MessageLoop::current()->RunUntilIdle();
}
void CreateAndRegisterTemporaryFile(
@@ -65,7 +65,7 @@ class TransientFileUtilTest : public testing::Test {
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 @@ TEST_F(TransientFileUtilTest, TransientFile) {
}
// 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));
« no previous file with comments | « webkit/browser/blob/blob_storage_context_unittest.cc ('k') | webkit/tools/test_shell/simple_file_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698