summaryrefslogtreecommitdiffstats
path: root/sync/notifier/non_blocking_invalidation_notifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'sync/notifier/non_blocking_invalidation_notifier.h')
-rw-r--r--sync/notifier/non_blocking_invalidation_notifier.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sync/notifier/non_blocking_invalidation_notifier.h b/sync/notifier/non_blocking_invalidation_notifier.h
index c4f28807..31efc74 100644
--- a/sync/notifier/non_blocking_invalidation_notifier.h
+++ b/sync/notifier/non_blocking_invalidation_notifier.h
@@ -23,8 +23,8 @@
#include "sync/util/weak_handle.h"
namespace base {
-class MessageLoopProxy;
-}
+class SingleThreadTaskRunner;
+} // namespace base
namespace sync_notifier {
@@ -73,8 +73,8 @@ class NonBlockingInvalidationNotifier
// The real guts of NonBlockingInvalidationNotifier, which allows
// this class to live completely on the parent thread.
scoped_refptr<Core> core_;
- scoped_refptr<base::MessageLoopProxy> parent_message_loop_proxy_;
- scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_;
+ scoped_refptr<base::SingleThreadTaskRunner> parent_task_runner_;
+ scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_;
DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidationNotifier);
};