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

Unified Diff: ppapi/c/ppb_messaging.h

Issue 600893002: PPAPI: Move PPB_Messaging 1.2 to stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unnecessary dependencies 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
« no previous file with comments | « ppapi/api/ppp_message_handler.idl ('k') | ppapi/c/ppp_message_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/ppb_messaging.h
diff --git a/ppapi/c/ppb_messaging.h b/ppapi/c/ppb_messaging.h
index 73ec4a607a940e544d66e721e700ad165ec4551f..5048d803e023d2ee5e9b2d4d686342dd02a7e52c 100644
--- a/ppapi/c/ppb_messaging.h
+++ b/ppapi/c/ppb_messaging.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From ppb_messaging.idl modified Wed Sep 10 15:41:14 2014. */
+/* From ppb_messaging.idl modified Wed Sep 24 10:48:37 2014. */
#ifndef PPAPI_C_PPB_MESSAGING_H_
#define PPAPI_C_PPB_MESSAGING_H_
@@ -17,8 +17,8 @@
#include "ppapi/c/ppp_message_handler.h"
#define PPB_MESSAGING_INTERFACE_1_0 "PPB_Messaging;1.0"
-#define PPB_MESSAGING_INTERFACE_1_2 "PPB_Messaging;1.2" /* dev */
-#define PPB_MESSAGING_INTERFACE PPB_MESSAGING_INTERFACE_1_0
+#define PPB_MESSAGING_INTERFACE_1_2 "PPB_Messaging;1.2"
+#define PPB_MESSAGING_INTERFACE PPB_MESSAGING_INTERFACE_1_2
Junichi Uekawa 2014/10/10 00:56:00 This makes an interface which was available since
Junichi Uekawa 2014/10/10 03:50:44 nevermind, my understanding now is that code compi
/**
* @file
@@ -37,7 +37,7 @@
* and is related to sending messages to JavaScript message event listeners on
* the DOM element associated with specific module instance.
*/
-struct PPB_Messaging_1_2 { /* dev */
+struct PPB_Messaging_1_2 {
/**
* PostMessage() asynchronously invokes any listeners for message events on
* the DOM element for the given module instance. A call to PostMessage()
@@ -157,11 +157,11 @@ struct PPB_Messaging_1_2 { /* dev */
void (*UnregisterMessageHandler)(PP_Instance instance);
};
+typedef struct PPB_Messaging_1_2 PPB_Messaging;
+
struct PPB_Messaging_1_0 {
void (*PostMessage)(PP_Instance instance, struct PP_Var message);
};
-
-typedef struct PPB_Messaging_1_0 PPB_Messaging;
/**
* @}
*/
« no previous file with comments | « ppapi/api/ppp_message_handler.idl ('k') | ppapi/c/ppp_message_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698