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; |
/** |
* @} |
*/ |