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

Unified Diff: chromecast/renderer/media/cma_message_filter_proxy.h

Issue 1142513004: Chromecast: MessageLoopProxy cleanup --> SingleThreadTaskRunner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
Index: chromecast/renderer/media/cma_message_filter_proxy.h
diff --git a/chromecast/renderer/media/cma_message_filter_proxy.h b/chromecast/renderer/media/cma_message_filter_proxy.h
index 0930f19938e62768fc71dcbb948d6f50d51bdfed..ab007118e173038777365402f34614d6be0b3d60 100644
--- a/chromecast/renderer/media/cma_message_filter_proxy.h
+++ b/chromecast/renderer/media/cma_message_filter_proxy.h
@@ -19,7 +19,7 @@
#include "media/base/pipeline_status.h"
namespace base {
-class MessageLoopProxy;
+class SingleThreadTaskRunner;
}
namespace chromecast {
@@ -59,7 +59,7 @@ class CmaMessageFilterProxy : public IPC::MessageFilter {
};
explicit CmaMessageFilterProxy(
- const scoped_refptr<base::MessageLoopProxy>& io_message_loop);
+ const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner);
// Getter for the one CmaMessageFilterHost object.
static CmaMessageFilterProxy* Get();
@@ -124,7 +124,7 @@ class CmaMessageFilterProxy : public IPC::MessageFilter {
IPC::Sender* sender_;
- scoped_refptr<base::MessageLoopProxy> const io_message_loop_;
+ scoped_refptr<base::SingleThreadTaskRunner> const io_task_runner_;
DISALLOW_COPY_AND_ASSIGN(CmaMessageFilterProxy);
};
« no previous file with comments | « chromecast/renderer/media/audio_pipeline_proxy.cc ('k') | chromecast/renderer/media/cma_message_filter_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698