diff options
author | victorhsieh@chromium.org <victorhsieh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-18 20:54:07 +0000 |
---|---|---|
committer | victorhsieh@chromium.org <victorhsieh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-18 20:54:07 +0000 |
commit | 7845e2881f8fce2b433782f40241b96a25c76250 (patch) | |
tree | d407b856346de4b933ed9285a5b6e4117e029b9e /ppapi | |
parent | e1fc8b3c053214d096b90bc54a582226e04f7f57 (diff) | |
download | chromium_src-7845e2881f8fce2b433782f40241b96a25c76250.zip chromium_src-7845e2881f8fce2b433782f40241b96a25c76250.tar.gz chromium_src-7845e2881f8fce2b433782f40241b96a25c76250.tar.bz2 |
Make return type of DispatchResourceReply consistent
Contributed by victorhsieh@chromium.org
BUG=
Review URL: https://chromiumcodereview.appspot.com/10942003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157413 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/dispatch_reply_message.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/dispatch_reply_message.h b/ppapi/proxy/dispatch_reply_message.h index 0dc3739..609240f 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); } |