summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-02 22:35:53 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-02 22:35:53 +0000
commitbc2eeb4a236eab44d172d4737d16c9c237db4210 (patch)
tree23a8649559051ce1486c143aaf88302692a365d3 /ppapi/api
parentb2e8e0bde68e71b365d556c029299c80439cbef7 (diff)
downloadchromium_src-bc2eeb4a236eab44d172d4737d16c9c237db4210.zip
chromium_src-bc2eeb4a236eab44d172d4737d16c9c237db4210.tar.gz
chromium_src-bc2eeb4a236eab44d172d4737d16c9c237db4210.tar.bz2
Add a way to query whether a given instance is off-the-record
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10278007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135010 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/private/ppb_flash.idl8
1 files changed, 7 insertions, 1 deletions
diff --git a/ppapi/api/private/ppb_flash.idl b/ppapi/api/private/ppb_flash.idl
index a3c9b77..a08c4d0 100644
--- a/ppapi/api/private/ppb_flash.idl
+++ b/ppapi/api/private/ppb_flash.idl
@@ -28,7 +28,13 @@ enum PP_FlashSetting {
* created 3D context will use emulation because context initialization
* failed.
*/
- PP_FLASHSETTING_3DENABLED = 1
+ PP_FLASHSETTING_3DENABLED = 1,
+
+ /**
+ * Specifies if the given instance is in private/inconito/off-the-record mode
+ * (returns 1) or "regular" mode (returns 0). Returns -1 on invalid instance.
+ */
+ PP_FLASHSETTING_INCOGNITO = 2
};
/**