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

Unified Diff: ppapi/nacl_irt/manifest_service.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
« no previous file with comments | « media/gpu/ipc/service/gpu_video_decode_accelerator.cc ('k') | ppapi/proxy/plugin_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/nacl_irt/manifest_service.cc
diff --git a/ppapi/nacl_irt/manifest_service.cc b/ppapi/nacl_irt/manifest_service.cc
index 2a5d9bb02daf4e03a8608029d60210535b33ee3b..5a3f7387c51dca157ece504523269ea4a751b1fb 100644
--- a/ppapi/nacl_irt/manifest_service.cc
+++ b/ppapi/nacl_irt/manifest_service.cc
@@ -44,8 +44,8 @@ class ManifestMessageFilter : public IPC::SyncMessageFilter {
// When set up is done, OnFilterAdded is called on IO thread. Unblocks the
// Send().
- void OnFilterAdded(IPC::Sender* sender) override {
- SyncMessageFilter::OnFilterAdded(sender);
+ void OnFilterAdded(IPC::Channel* channel) override {
+ SyncMessageFilter::OnFilterAdded(channel);
connected_event_.Signal();
}
« no previous file with comments | « media/gpu/ipc/service/gpu_video_decode_accelerator.cc ('k') | ppapi/proxy/plugin_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698