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

Unified Diff: ppapi/thunk/ppb_messaging_thunk.cc

Issue 253813006: PPAPI: Synchronous postMessage proposal #1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('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 fb936b8e0aa2932455a5b940ba9070b277583651..a7c8986ba2d1613f39812001bd88b06a34f249ad 100644
--- a/ppapi/thunk/ppb_messaging_thunk.cc
+++ b/ppapi/thunk/ppb_messaging_thunk.cc
@@ -2,8 +2,9 @@
// 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 Mon Apr 28 13:06:18 2014.
+#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/ppb_messaging.h"
#include "ppapi/shared_impl/tracked_callback.h"
@@ -23,15 +24,46 @@ void PostMessage(PP_Instance instance, struct PP_Var message) {
enter.functions()->PostMessage(instance, message);
}
+int32_t WaitForBlockingMessage(PP_Instance instance,
+ struct PP_Var* message,
+ struct PP_CompletionCallback callback) {
+ VLOG(4) << "PPB_Messaging::WaitForBlockingMessage()";
+ EnterInstance enter(instance, callback);
+ if (enter.failed())
+ return enter.retval();
+ return enter.SetResult(enter.functions()->WaitForBlockingMessage(
+ instance,
+ message,
+ enter.callback()));
+}
+
+void RespondToBlockingMessage(PP_Instance instance, struct PP_Var response) {
+ VLOG(4) << "PPB_Messaging::RespondToBlockingMessage()";
+ EnterInstance enter(instance);
+ if (enter.failed())
+ return;
+ enter.functions()->RespondToBlockingMessage(instance, response);
+}
+
const PPB_Messaging_1_0 g_ppb_messaging_thunk_1_0 = {
&PostMessage
};
+const PPB_Messaging_1_1 g_ppb_messaging_thunk_1_1 = {
+ &PostMessage,
+ &WaitForBlockingMessage,
+ &RespondToBlockingMessage
+};
+
} // 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
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698