summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
authorraymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-02 22:10:05 +0000
committerraymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-02 22:10:05 +0000
commit4dfb8f00b69ec3dde0660c4790a469df5596a3ab (patch)
treedefc06b4fc11ced9c365bf502c5475bee4b3620a /ppapi/api
parent28cc10a26ffaaf8ff7f4f2e05ab6d03926951167 (diff)
downloadchromium_src-4dfb8f00b69ec3dde0660c4790a469df5596a3ab.zip
chromium_src-4dfb8f00b69ec3dde0660c4790a469df5596a3ab.tar.gz
chromium_src-4dfb8f00b69ec3dde0660c4790a469df5596a3ab.tar.bz2
Added RTF support to pepper API.
BUG=120435 TEST=out/Release/browser_tests --gtest_filter=*PPAPITest.*Clipboard* Review URL: http://codereview.chromium.org/9921018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130223 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/private/ppb_flash_clipboard.idl17
1 files changed, 14 insertions, 3 deletions
diff --git a/ppapi/api/private/ppb_flash_clipboard.idl b/ppapi/api/private/ppb_flash_clipboard.idl
index 70073a9..24380de 100644
--- a/ppapi/api/private/ppb_flash_clipboard.idl
+++ b/ppapi/api/private/ppb_flash_clipboard.idl
@@ -40,10 +40,21 @@ enum PP_Flash_Clipboard_Type {
enum PP_Flash_Clipboard_Format {
/** Indicates an invalid or unsupported clipboard data format. */
PP_FLASH_CLIPBOARD_FORMAT_INVALID = 0,
- /** Indicates plain text clipboard data. */
+ /**
+ * Indicates plaintext clipboard data. The format expected/returned is a
+ * <code>PP_VARTYPE_STRING</code>.
+ */
PP_FLASH_CLIPBOARD_FORMAT_PLAINTEXT = 1,
- /** Indicates HTML clipboard data. */
- PP_FLASH_CLIPBOARD_FORMAT_HTML = 2
+ /**
+ * Indicates HTML clipboard data. The format expected/returned is a
+ * <code>PP_VARTYPE_STRING</code>.
+ */
+ PP_FLASH_CLIPBOARD_FORMAT_HTML = 2,
+ /**
+ * Indicates RTF clipboard data. The format expected/returned is a
+ * <code>PP_VARTYPE_ARRAY_BUFFER</code>.
+ */
+ PP_FLASH_CLIPBOARD_FORMAT_RTF = 3
};
/**