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

Unified Diff: content/renderer/android/synchronous_compositor_filter.cc

Issue 2349713003: IPC::MessageFilter::OnFilterAdded: IPC::Sender -> IPC::Channel (Closed)
Patch Set: . Created 4 years, 3 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: content/renderer/android/synchronous_compositor_filter.cc
diff --git a/content/renderer/android/synchronous_compositor_filter.cc b/content/renderer/android/synchronous_compositor_filter.cc
index 8206c242321fa94d61bc96b40f33d90318bd5d61..6e48013f3e327fa3f404f187b7d7d5b8991fe89c 100644
--- a/content/renderer/android/synchronous_compositor_filter.cc
+++ b/content/renderer/android/synchronous_compositor_filter.cc
@@ -25,9 +25,9 @@ SynchronousCompositorFilter::SynchronousCompositorFilter(
SynchronousCompositorFilter::~SynchronousCompositorFilter() {}
-void SynchronousCompositorFilter::OnFilterAdded(IPC::Sender* sender) {
+void SynchronousCompositorFilter::OnFilterAdded(IPC::Channel* channel) {
io_task_runner_ = base::ThreadTaskRunnerHandle::Get();
- sender_ = sender;
+ sender_ = channel;
compositor_task_runner_->PostTask(
FROM_HERE,
base::Bind(&SynchronousCompositorFilter::FilterReadyOnCompositorThread,
« no previous file with comments | « content/renderer/android/synchronous_compositor_filter.h ('k') | content/renderer/input/input_event_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698