Index: ppapi/api/private/ppb_flash.idl |
diff --git a/ppapi/api/private/ppb_flash.idl b/ppapi/api/private/ppb_flash.idl |
index d5d032ee4ec374406854841c9b3310dbbc499c0b..881e0f92af56dd1ff7730ccae1ad81040322f391 100644 |
--- a/ppapi/api/private/ppb_flash.idl |
+++ b/ppapi/api/private/ppb_flash.idl |
@@ -169,6 +169,7 @@ interface PPB_Flash { |
/** |
* Returns the device ID as a string. Returns a PP_VARTYPE_UNDEFINED on error. |
+ * Deprecated, use GetDeviceIDAsync. |
*/ |
[version=12.2] |
PP_Var GetDeviceID([in] PP_Instance instance); |
@@ -178,7 +179,8 @@ interface PPB_Flash { |
* result in -1 return value. |
*/ |
[version=12.3] |
- int32_t GetSettingInt(PP_Instance instance, PP_FlashSetting setting); |
+ int32_t GetSettingInt([in] PP_Instance instance, |
raymes
2012/06/08 16:49:19
Any reason for splitting this line?
|
+ [in] PP_FlashSetting setting); |
}; |
#inline c |