diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 22:35:53 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 22:35:53 +0000 |
commit | bc2eeb4a236eab44d172d4737d16c9c237db4210 (patch) | |
tree | 23a8649559051ce1486c143aaf88302692a365d3 /ppapi/c | |
parent | b2e8e0bde68e71b365d556c029299c80439cbef7 (diff) | |
download | chromium_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/c')
-rw-r--r-- | ppapi/c/private/ppb_flash.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ppapi/c/private/ppb_flash.h b/ppapi/c/private/ppb_flash.h index 632285c8d..b7dc4bc 100644 --- a/ppapi/c/private/ppb_flash.h +++ b/ppapi/c/private/ppb_flash.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From private/ppb_flash.idl modified Fri Apr 27 10:13:19 2012. */ +/* From private/ppb_flash.idl modified Tue May 01 16:01:19 2012. */ #ifndef PPAPI_C_PRIVATE_PPB_FLASH_H_ #define PPAPI_C_PRIVATE_PPB_FLASH_H_ @@ -50,7 +50,12 @@ typedef enum { * 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 } PP_FlashSetting; PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashSetting, 4); /** |