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

Unified Diff: chrome/gpu/gpu_video_service.cc

Issue 5978003: Make IPC::Channel::Listener:OnMessageReceived have a return value indicating ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | « chrome/gpu/gpu_video_service.h ('k') | chrome/nacl/broker_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/gpu/gpu_video_service.cc
===================================================================
--- chrome/gpu/gpu_video_service.cc (revision 70108)
+++ chrome/gpu/gpu_video_service.cc (working copy)
@@ -36,12 +36,13 @@
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() {
« no previous file with comments | « chrome/gpu/gpu_video_service.h ('k') | chrome/nacl/broker_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698