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

Unified Diff: sync/notifier/non_blocking_invalidator_unittest.cc

Issue 14113050: sync: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | « sync/notifier/invalidator_factory_unittest.cc ('k') | sync/notifier/registration_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/notifier/non_blocking_invalidator_unittest.cc
diff --git a/sync/notifier/non_blocking_invalidator_unittest.cc b/sync/notifier/non_blocking_invalidator_unittest.cc
index a143aca06ed12c1ce5b85ecb0391c4e79c572380..bb18c50a3ec37dc873c6719b7955a354fe93debe 100644
--- a/sync/notifier/non_blocking_invalidator_unittest.cc
+++ b/sync/notifier/non_blocking_invalidator_unittest.cc
@@ -39,7 +39,7 @@ class NonBlockingInvalidatorTestDelegate {
invalidation_state_tracker) {
DCHECK(!invalidator_.get());
base::Thread::Options options;
- options.message_loop_type = MessageLoop::TYPE_IO;
+ options.message_loop_type = base::MessageLoop::TYPE_IO;
io_thread_.StartWithOptions(options);
request_context_getter_ =
new net::TestURLRequestContextGetter(io_thread_.message_loop_proxy());
@@ -86,7 +86,7 @@ class NonBlockingInvalidatorTestDelegate {
}
private:
- MessageLoop message_loop_;
+ base::MessageLoop message_loop_;
base::Thread io_thread_;
scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
scoped_ptr<NonBlockingInvalidator> invalidator_;
« no previous file with comments | « sync/notifier/invalidator_factory_unittest.cc ('k') | sync/notifier/registration_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698