Index: content/browser/gpu/gpu_process_host.cc |
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc |
index 2ae69591541f9dfeb33830484d071399d76cffa1..128a1aeca87f61756025c398f099c18574765316 100644 |
--- a/content/browser/gpu/gpu_process_host.cc |
+++ b/content/browser/gpu/gpu_process_host.cc |
@@ -469,6 +469,11 @@ bool GpuProcessHost::Send(IPC::Message* msg) { |
return result; |
} |
+void GpuProcessHost::AddFilter(IPC::ChannelProxy::MessageFilter* filter) { |
+ DCHECK(CalledOnValidThread()); |
+ process_->GetHost()->AddFilter(filter); |
+} |
+ |
bool GpuProcessHost::OnMessageReceived(const IPC::Message& message) { |
DCHECK(CalledOnValidThread()); |
IPC_BEGIN_MESSAGE_MAP(GpuProcessHost, message) |