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

Unified Diff: content/common/message_router.cc

Issue 17176027: Add gpu command buffer support for loseContextCHROMIUM (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch 2 Created 7 years, 6 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
Index: content/common/message_router.cc
diff --git a/content/common/message_router.cc b/content/common/message_router.cc
index f73e6543eb4e5b5ecc80096bfa9f6bc28fa2938f..ece9304f52e96242a9f6412e339b3ec98e99ab5f 100644
--- a/content/common/message_router.cc
+++ b/content/common/message_router.cc
@@ -46,8 +46,7 @@ bool MessageRouter::RouteMessage(const IPC::Message& msg) {
if (!listener)
return false;
- listener->OnMessageReceived(msg);
- return true;
+ return listener->OnMessageReceived(msg);
Justin Novosad 2013/06/21 18:24:11 This is to prevent an IPC deadlock between the ren
piman 2013/06/21 19:05:05 This is used in many places, for many different ch
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698