| 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 d03bb4a6ca3cfd573cc093c55cd227eeb46f6621..dfb12773ecb2c470b2e057472618987575ab712d 100644
|
| --- a/content/browser/gpu/gpu_process_host.cc
|
| +++ b/content/browser/gpu/gpu_process_host.cc
|
| @@ -474,6 +474,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)
|
|
|