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

Unified Diff: chrome/browser/policy/url_blacklist_manager_unittest.cc

Issue 136683004: Removes MessageLoop::TYPE_XXX where possible (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolve merge Created 6 years, 11 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/policy/url_blacklist_manager_unittest.cc
diff --git a/chrome/browser/policy/url_blacklist_manager_unittest.cc b/chrome/browser/policy/url_blacklist_manager_unittest.cc
index 4329cbdaf2750b2dfd4240b1a4a7545910c90eb2..cc665286a3544cd90f59c8623ef01962077c2b59 100644
--- a/chrome/browser/policy/url_blacklist_manager_unittest.cc
+++ b/chrome/browser/policy/url_blacklist_manager_unittest.cc
@@ -84,7 +84,7 @@ class TestingURLBlacklistManager : public URLBlacklistManager {
class URLBlacklistManagerTest : public testing::Test {
protected:
- URLBlacklistManagerTest() : loop_(base::MessageLoop::TYPE_IO) {}
+ URLBlacklistManagerTest() {}
virtual void SetUp() OVERRIDE {
pref_service_.registry()->RegisterListPref(policy_prefs::kUrlBlacklist);
@@ -102,7 +102,7 @@ class URLBlacklistManagerTest : public testing::Test {
blacklist_manager_.reset();
}
- base::MessageLoop loop_;
+ base::MessageLoopForIO loop_;
TestingPrefServiceSimple pref_service_;
scoped_ptr<TestingURLBlacklistManager> blacklist_manager_;
};

Powered by Google App Engine
This is Rietveld 408576698