diff options
Diffstat (limited to 'chrome/gpu/gpu_video_service.cc')
| -rw-r--r-- | chrome/gpu/gpu_video_service.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/gpu/gpu_video_service.cc b/chrome/gpu/gpu_video_service.cc index ca9d482..fb76e02 100644 --- a/chrome/gpu/gpu_video_service.cc +++ b/chrome/gpu/gpu_video_service.cc @@ -36,12 +36,13 @@ void GpuVideoService::OnChannelError() { LOG(ERROR) << "GpuVideoService::OnChannelError"; } -void GpuVideoService::OnMessageReceived(const IPC::Message& msg) { +bool GpuVideoService::OnMessageReceived(const IPC::Message& msg) { #if 0 IPC_BEGIN_MESSAGE_MAP(GpuVideoService, msg) IPC_MESSAGE_UNHANDLED_ERROR() IPC_END_MESSAGE_MAP() #endif + return false; } bool GpuVideoService::IntializeGpuVideoService() { |
