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

Unified Diff: ppapi/proxy/dispatch_reply_message.h

Issue 10942003: Make return type of DispatchResourceReply consistent (Closed) Base URL: http://git.chromium.org/chromium/src.git@port-g2d
Patch Set: description update since I don't have commit bit Created 8 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/dispatch_reply_message.h
diff --git a/ppapi/proxy/dispatch_reply_message.h b/ppapi/proxy/dispatch_reply_message.h
index 0dc373901d42489bc4d9b2d0197164914b4c3dee..609240f711b1f237e6549f84b1d0598913473a26 100644
--- a/ppapi/proxy/dispatch_reply_message.h
+++ b/ppapi/proxy/dispatch_reply_message.h
@@ -34,9 +34,9 @@ inline void DispatchResourceReply(ObjT* obj, Method method,
}
template<class ObjT, class Method, class A, class B>
-inline int32_t DispatchResourceReply(ObjT* obj, Method method,
- const ResourceMessageReplyParams& params,
- const Tuple2<A, B>& arg) {
+inline void DispatchResourceReply(ObjT* obj, Method method,
+ const ResourceMessageReplyParams& params,
+ const Tuple2<A, B>& arg) {
return (obj->*method)(params, arg.a, arg.b);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698