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

Unified Diff: ppapi/proxy/plugin_message_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
« no previous file with comments | « ppapi/proxy/plugin_message_filter.h ('k') | ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_message_filter.cc
diff --git a/ppapi/proxy/plugin_message_filter.cc b/ppapi/proxy/plugin_message_filter.cc
index a2994c52885c6fe0f16361760ea194f545214bd4..5617185c712e3aa1ea84be41a1ec213ef059febd 100644
--- a/ppapi/proxy/plugin_message_filter.cc
+++ b/ppapi/proxy/plugin_message_filter.cc
@@ -31,8 +31,8 @@ PluginMessageFilter::PluginMessageFilter(
PluginMessageFilter::~PluginMessageFilter() {
}
-void PluginMessageFilter::OnFilterAdded(IPC::Sender* sender) {
- sender_ = sender;
+void PluginMessageFilter::OnFilterAdded(IPC::Channel* channel) {
+ sender_ = channel;
}
void PluginMessageFilter::OnFilterRemoved() {
« no previous file with comments | « ppapi/proxy/plugin_message_filter.h ('k') | ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698