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

Unified Diff: chrome/browser/sync_file_system/sync_file_system_test_util.h

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again 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
Index: chrome/browser/sync_file_system/sync_file_system_test_util.h
diff --git a/chrome/browser/sync_file_system/sync_file_system_test_util.h b/chrome/browser/sync_file_system/sync_file_system_test_util.h
index 7c87896e119b78749537eac76d6ba9e473e7b90a..fadd5ecd16b49330d8547cab492b8864843e7d8b 100644
--- a/chrome/browser/sync_file_system/sync_file_system_test_util.h
+++ b/chrome/browser/sync_file_system/sync_file_system_test_util.h
@@ -37,7 +37,7 @@ class MultiThreadTestHelper {
void SetUp();
void TearDown();
- MessageLoop* message_loop() { return &message_loop_; }
+ base::MessageLoop* message_loop() { return &message_loop_; }
base::SingleThreadTaskRunner* ui_task_runner() {
return ui_task_runner_.get();
@@ -52,7 +52,7 @@ class MultiThreadTestHelper {
}
private:
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
scoped_ptr<base::Thread> file_thread_;
scoped_ptr<base::Thread> io_thread_;

Powered by Google App Engine
This is Rietveld 408576698