| Index: ppapi/thunk/ppb_messaging_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_messaging_thunk.cc b/ppapi/thunk/ppb_messaging_thunk.cc
|
| index fb936b8e0aa2932455a5b940ba9070b277583651..6764c84c4048c4fc057f869abaf77a8a939367b6 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 Tue Aug 20 08:13:36 2013.
|
| +// From ppb_messaging.idl modified Thu May 1 11:14:29 2014.
|
|
|
| #include "ppapi/c/pp_errors.h"
|
| #include "ppapi/c/ppb_messaging.h"
|
| @@ -23,15 +23,47 @@ void PostMessage(PP_Instance instance, struct PP_Var message) {
|
| enter.functions()->PostMessage(instance, message);
|
| }
|
|
|
| +int32_t RegisterMessageHandler(PP_Instance instance,
|
| + const void* user_data,
|
| + const struct PPP_MessageHandler_0_1* handler,
|
| + PP_Resource message_loop) {
|
| + VLOG(4) << "PPB_Messaging::RegisterMessageHandler()";
|
| + EnterInstance enter(instance);
|
| + if (enter.failed())
|
| + return enter.retval();
|
| + return enter.functions()->RegisterMessageHandler(instance,
|
| + user_data,
|
| + handler,
|
| + message_loop);
|
| +}
|
| +
|
| +void UnregisterMessageHandler(PP_Instance instance) {
|
| + VLOG(4) << "PPB_Messaging::UnregisterMessageHandler()";
|
| + EnterInstance enter(instance);
|
| + if (enter.failed())
|
| + return;
|
| + enter.functions()->UnregisterMessageHandler(instance);
|
| +}
|
| +
|
| const PPB_Messaging_1_0 g_ppb_messaging_thunk_1_0 = {
|
| &PostMessage
|
| };
|
|
|
| +const PPB_Messaging_1_1 g_ppb_messaging_thunk_1_1 = {
|
| + &PostMessage,
|
| + &RegisterMessageHandler,
|
| + &UnregisterMessageHandler
|
| +};
|
| +
|
| } // namespace
|
|
|
| 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;
|
| +}
|
| +
|
| } // namespace thunk
|
| } // namespace ppapi
|
|
|