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

Unified Diff: gpu/ipc/service/gpu_channel.h

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 | « content/renderer/pepper/pepper_hung_plugin_filter.cc ('k') | gpu/ipc/service/gpu_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/service/gpu_channel.h
diff --git a/gpu/ipc/service/gpu_channel.h b/gpu/ipc/service/gpu_channel.h
index 7b82557a3d6b1b1a6b66aeb901e34dd520791c65..84e2279506a30fd59809a55575b09cecaeb3c167 100644
--- a/gpu/ipc/service/gpu_channel.h
+++ b/gpu/ipc/service/gpu_channel.h
@@ -305,7 +305,7 @@ class GPU_EXPORT GpuChannelMessageFilter : public IPC::MessageFilter {
GpuChannelMessageFilter();
// IPC::MessageFilter implementation.
- void OnFilterAdded(IPC::Sender* sender) override;
+ void OnFilterAdded(IPC::Channel* channel) override;
void OnFilterRemoved() override;
void OnChannelConnected(int32_t peer_pid) override;
void OnChannelError() override;
@@ -333,7 +333,7 @@ class GPU_EXPORT GpuChannelMessageFilter : public IPC::MessageFilter {
base::hash_map<int32_t, scoped_refptr<GpuChannelMessageQueue>> routes_;
base::Lock routes_lock_; // Protects |routes_|.
- IPC::Sender* sender_;
+ IPC::Channel* channel_;
base::ProcessId peer_pid_;
std::vector<scoped_refptr<IPC::MessageFilter>> channel_filters_;
« no previous file with comments | « content/renderer/pepper/pepper_hung_plugin_filter.cc ('k') | gpu/ipc/service/gpu_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698