diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-24 17:13:38 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-24 17:13:38 +0000 |
commit | 606876c8312f1c1228a78ff3f28e65806c6b223c (patch) | |
tree | 82ea4c16106a07efc758c3f705c14277ba783c76 /ppapi/c | |
parent | fe86d110746454b822c42742624eaa8aab740834 (diff) | |
download | chromium_src-606876c8312f1c1228a78ff3f28e65806c6b223c.zip chromium_src-606876c8312f1c1228a78ff3f28e65806c6b223c.tar.gz chromium_src-606876c8312f1c1228a78ff3f28e65806c6b223c.tar.bz2 |
Pepper/Flapper: Add IsFormatAvailable() to PPB_Flash_Clipboard.
This requires a WebKit change (see
https://bugs.webkit.org/show_bug.cgi?id=56868).
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6724010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79289 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r-- | ppapi/c/private/ppb_flash_clipboard.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/ppapi/c/private/ppb_flash_clipboard.h b/ppapi/c/private/ppb_flash_clipboard.h index c16ae36..e95e19c 100644 --- a/ppapi/c/private/ppb_flash_clipboard.h +++ b/ppapi/c/private/ppb_flash_clipboard.h @@ -5,10 +5,11 @@ #ifndef PPAPI_C_PRIVATE_PPB_FLASH_CLIPBOARD_H_ #define PPAPI_C_PRIVATE_PPB_FLASH_CLIPBOARD_H_ +#include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_var.h" -#define PPB_FLASH_CLIPBOARD_INTERFACE "PPB_Flash_Clipboard;2" +#define PPB_FLASH_CLIPBOARD_INTERFACE "PPB_Flash_Clipboard;3" typedef enum { PP_FLASH_CLIPBOARD_TYPE_STANDARD = 0, @@ -16,7 +17,18 @@ typedef enum { PP_FLASH_CLIPBOARD_TYPE_DRAG = 2 } PP_Flash_Clipboard_Type; +typedef enum { + PP_FLASH_CLIPBOARD_FORMAT_INVALID = 0, + PP_FLASH_CLIPBOARD_FORMAT_PLAINTEXT = 1, + PP_FLASH_CLIPBOARD_FORMAT_HTML = 2 +} PP_Flash_Clipboard_Format; + struct PPB_Flash_Clipboard { + // Returns true if the given format is available from the given clipboard. + PP_Bool (*IsFormatAvailable)(PP_Instance instance_id, + PP_Flash_Clipboard_Type clipboard_type, + PP_Flash_Clipboard_Format format); + // Reads plain text data from the clipboard. struct PP_Var (*ReadPlainText)(PP_Instance instance_id, PP_Flash_Clipboard_Type clipboard_type); @@ -27,7 +39,7 @@ struct PPB_Flash_Clipboard { PP_Flash_Clipboard_Type clipboard_type, struct PP_Var text); - // TODO(vtl): More formats, a |IsFormatAvailable()|, .... + // TODO(vtl): More formats (e.g., HTML).... }; #endif // PPAPI_C_PRIVATE_PPB_FLASH_CLIPBOARD_H_ |