X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fppapi%2Fapi%2Fprivate%2Fppb_flash_clipboard.idl;h=d2fef48a074b8e68fae9a78da2efc67d0d595c88;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=5a973182a070ae0e772ee4042206d30d7045f112;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/ppapi/api/private/ppb_flash_clipboard.idl b/src/ppapi/api/private/ppb_flash_clipboard.idl index 5a97318..d2fef48 100644 --- a/src/ppapi/api/private/ppb_flash_clipboard.idl +++ b/src/ppapi/api/private/ppb_flash_clipboard.idl @@ -10,7 +10,8 @@ label Chrome { M19 = 4.0, - M24 = 5.0 + M24 = 5.0, + M34 = 5.1 }; /** @@ -142,4 +143,15 @@ interface PPB_Flash_Clipboard { [in] uint32_t data_item_count, [in, size_is(data_item_count)] uint32_t[] formats, [in, size_is(data_item_count)] PP_Var[] data_items); + + /** + * Gets a sequence number which uniquely identifies clipboard state. This can + * be used to version the data on the clipboard and determine whether it has + * changed. The sequence number will be placed in |sequence_number| and + * PP_TRUE returned if the sequence number was retrieved successfully. + */ + [version=5.1] + PP_Bool GetSequenceNumber([in] PP_Instance instance_id, + [in] PP_Flash_Clipboard_Type clipboard_type, + [out] uint64_t sequence_number); };