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

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: Created 7 years, 8 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 3708ccbf7051ab886e87346efba3e13d18a9d60a..45b2ffd2d5c1ee5bcbbc20696bde1801e484a23e 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