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

Unified Diff: ppapi/api/ppp.idl

Issue 10069035: Add a way to implement GetInterface in the broker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
Index: ppapi/api/ppp.idl
diff --git a/ppapi/api/ppp.idl b/ppapi/api/ppp.idl
index b26e63f73515a2678a30c03df5f97c740760c08c..63f2c623341f335ae4070092e8bdf11d27d6a49a 100644
--- a/ppapi/api/ppp.idl
+++ b/ppapi/api/ppp.idl
@@ -121,3 +121,18 @@ PP_EXPORT const void* PPP_GetInterface(const char* interface_name);
#endinl
+/**
+ * Defines the type of the <code>PPP_InitializeModule</code> function.
+ */
+typedef int32_t PP_InitializeModule_Func([in] PP_Module module,
+ [in] PPB_GetInterface get_interface);
+
+/**
+ * Defines the type of the <code>PPP_ShutdownModule</code> function.
+ */
+typedef interface_t PP_GetInterface_Func([in] str_t interface_name);
+
+/**
+ * Defines the type of the <code>PPP_ShutdownModule</code> function.
+ */
+typedef void PP_ShutdownModule_Func();

Powered by Google App Engine
This is Rietveld 408576698