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

Unified Diff: ppapi/thunk/ppb_messaging_thunk.cc

Issue 564573002: PPAPI: Make PPP_MessageHandler work in PNaCl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« ppapi/proxy/message_handler.cc ('K') | « ppapi/thunk/ppb_instance_api.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_messaging_thunk.cc
diff --git a/ppapi/thunk/ppb_messaging_thunk.cc b/ppapi/thunk/ppb_messaging_thunk.cc
index c35123360a4e11bb7a224d8b9db4a7d98d4e15d5..637d2fe793340cd16b9ad72cb769007f8087268f 100644
--- a/ppapi/thunk/ppb_messaging_thunk.cc
+++ b/ppapi/thunk/ppb_messaging_thunk.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// From ppb_messaging.idl modified Thu May 29 15:54:46 2014.
+// From ppb_messaging.idl modified Wed Sep 10 15:41:14 2014.
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/ppb_messaging.h"
@@ -25,7 +25,7 @@ void PostMessage(PP_Instance instance, struct PP_Var message) {
int32_t RegisterMessageHandler(PP_Instance instance,
void* user_data,
- const struct PPP_MessageHandler_0_1* handler,
+ const struct PPP_MessageHandler_0_2* handler,
PP_Resource message_loop) {
VLOG(4) << "PPB_Messaging::RegisterMessageHandler()";
EnterInstance enter(instance);
@@ -49,7 +49,7 @@ const PPB_Messaging_1_0 g_ppb_messaging_thunk_1_0 = {
&PostMessage
};
-const PPB_Messaging_1_1 g_ppb_messaging_thunk_1_1 = {
+const PPB_Messaging_1_2 g_ppb_messaging_thunk_1_2 = {
&PostMessage,
&RegisterMessageHandler,
&UnregisterMessageHandler
@@ -61,8 +61,8 @@ PPAPI_THUNK_EXPORT const PPB_Messaging_1_0* GetPPB_Messaging_1_0_Thunk() {
return &g_ppb_messaging_thunk_1_0;
}
-PPAPI_THUNK_EXPORT const PPB_Messaging_1_1* GetPPB_Messaging_1_1_Thunk() {
- return &g_ppb_messaging_thunk_1_1;
+PPAPI_THUNK_EXPORT const PPB_Messaging_1_2* GetPPB_Messaging_1_2_Thunk() {
+ return &g_ppb_messaging_thunk_1_2;
}
} // namespace thunk
« ppapi/proxy/message_handler.cc ('K') | « ppapi/thunk/ppb_instance_api.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698