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

Unified Diff: chrome/renderer/media/cast_session.h

Issue 1123733002: [chrome/renderer/media] Replace MessageLoopProxy usage with ThreadTaskRunnerHandle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nit Created 5 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 | « chrome/renderer/media/cast_receiver_session_delegate.cc ('k') | chrome/renderer/media/cast_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/cast_session.h
diff --git a/chrome/renderer/media/cast_session.h b/chrome/renderer/media/cast_session.h
index afffb3503547cce2eab47ef9998ef8c79d63e131..acd04814d46347a54ae14519833cc645f2753e11 100644
--- a/chrome/renderer/media/cast_session.h
+++ b/chrome/renderer/media/cast_session.h
@@ -16,7 +16,7 @@
namespace base {
class BinaryValue;
class DictionaryValue;
-class MessageLoopProxy;
+class SingleThreadTaskRunner;
} // namespace base
namespace media {
@@ -100,8 +100,8 @@ class CastSession : public base::RefCounted<CastSession> {
// because it is owned by this object.
scoped_ptr<CastSessionDelegate> delegate_;
- // Proxy to the IO message loop.
- const scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_;
+ // Proxy to the IO task runner.
+ const scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
DISALLOW_COPY_AND_ASSIGN(CastSession);
};
« no previous file with comments | « chrome/renderer/media/cast_receiver_session_delegate.cc ('k') | chrome/renderer/media/cast_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698