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

Unified Diff: ppapi/c/trusted/ppb_broker_trusted.h

Issue 11316316: Implement an IsAllowed function in the pepper PPB_Broker_Trusted API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years 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/c/trusted/ppb_broker_trusted.h
diff --git a/ppapi/c/trusted/ppb_broker_trusted.h b/ppapi/c/trusted/ppb_broker_trusted.h
index 44b61184a169f6eadd5408aec0ab8d0f60d7f8fa..019e2e93e261abe5ff5f92f56eb40b6eeee4dc75 100644
--- a/ppapi/c/trusted/ppb_broker_trusted.h
+++ b/ppapi/c/trusted/ppb_broker_trusted.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From trusted/ppb_broker_trusted.idl modified Wed Oct 5 14:06:02 2011. */
+/* From trusted/ppb_broker_trusted.idl modified Mon Dec 3 11:10:40 2012. */
#ifndef PPAPI_C_TRUSTED_PPB_BROKER_TRUSTED_H_
#define PPAPI_C_TRUSTED_PPB_BROKER_TRUSTED_H_
@@ -16,7 +16,8 @@
#include "ppapi/c/pp_stdint.h"
#define PPB_BROKER_TRUSTED_INTERFACE_0_2 "PPB_BrokerTrusted;0.2"
-#define PPB_BROKER_TRUSTED_INTERFACE PPB_BROKER_TRUSTED_INTERFACE_0_2
+#define PPB_BROKER_TRUSTED_INTERFACE_0_3 "PPB_BrokerTrusted;0.3"
+#define PPB_BROKER_TRUSTED_INTERFACE PPB_BROKER_TRUSTED_INTERFACE_0_3
/**
* @file
@@ -40,7 +41,7 @@
* handle is closed. The handle should be closed before the resource is
* released.
*/
-struct PPB_BrokerTrusted_0_2 {
+struct PPB_BrokerTrusted_0_3 {
/**
* Returns a trusted broker resource.
*/
@@ -74,9 +75,26 @@ struct PPB_BrokerTrusted_0_2 {
* before connect has completed will return PP_ERROR_FAILED.
*/
int32_t (*GetHandle)(PP_Resource broker, int32_t* handle);
+ /**
+ * Returns PP_TRUE if the plugin has permission to launch the broker. A user
+ * must explicitly grant permission to launch the broker for a particular
+ * website. This is done through an infobar that is displayed when |Connect|
+ * is called. This function returns PP_TRUE if the user has already granted
+ * permission to launch the broker for the website containing this plugin
+ * instance. Returns PP_FALSE otherwise.
+ */
+ PP_Bool (*IsAllowed)(PP_Resource broker);
};
-typedef struct PPB_BrokerTrusted_0_2 PPB_BrokerTrusted;
+typedef struct PPB_BrokerTrusted_0_3 PPB_BrokerTrusted;
+
+struct PPB_BrokerTrusted_0_2 {
+ PP_Resource (*CreateTrusted)(PP_Instance instance);
+ PP_Bool (*IsBrokerTrusted)(PP_Resource resource);
+ int32_t (*Connect)(PP_Resource broker,
+ struct PP_CompletionCallback connect_callback);
+ int32_t (*GetHandle)(PP_Resource broker, int32_t* handle);
+};
/**
* @}
*/
« no previous file with comments | « ppapi/api/trusted/ppb_broker_trusted.idl ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698