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

Unified Diff: chrome/browser/browsing_data/browsing_data_file_system_helper_unittest.cc

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/browsing_data/browsing_data_file_system_helper_unittest.cc
diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper_unittest.cc b/chrome/browser/browsing_data/browsing_data_file_system_helper_unittest.cc
index 922a169d7b8c89dac0c4931949e54696ef2a559b..d2f2ef3536b60fcf0d7e2518e5b56fe43619b75f 100644
--- a/chrome/browser/browsing_data/browsing_data_file_system_helper_unittest.cc
+++ b/chrome/browser/browsing_data/browsing_data_file_system_helper_unittest.cc
@@ -90,13 +90,13 @@ class BrowsingDataFileSystemHelperTest : public testing::Test {
// Blocks on the current MessageLoop until Notify() is called.
void BlockUntilNotified() {
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
}
// Unblocks the current MessageLoop. Should be called in response to some sort
// of async activity in a callback method.
void Notify() {
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
// Callback that should be executed in response to
@@ -197,7 +197,7 @@ class BrowsingDataFileSystemHelperTest : public testing::Test {
// message_loop_, as well as all the threads associated with it must be
// defined before profile_ to prevent explosions. The threads also must be
// defined in the order they're listed here. Oh how I love C++.
- MessageLoopForUI message_loop_;
+ base::MessageLoopForUI message_loop_;
content::TestBrowserThread ui_thread_;
content::TestBrowserThread db_thread_;
content::TestBrowserThread webkit_thread_;

Powered by Google App Engine
This is Rietveld 408576698