Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Unified Diff: ppapi/cpp/private/flash_clipboard.h

Issue 9212066: Modified the flash cipboard interface to add html clipboard support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/cpp/private/flash_clipboard.h
diff --git a/ppapi/cpp/private/flash_clipboard.h b/ppapi/cpp/private/flash_clipboard.h
index db13ce67c8d1952e883d35330eed45576bfc9d9e..2e90ddb644ac4018aaf04bad6d3ce5bbac2c2426 100644
--- a/ppapi/cpp/private/flash_clipboard.h
+++ b/ppapi/cpp/private/flash_clipboard.h
@@ -6,6 +6,7 @@
#define PPAPI_CPP_PRIVATE_FLASH_CLIPBOARD_H_
#include <string>
+#include <vector>
#include "ppapi/c/private/ppb_flash_clipboard.h"
@@ -25,16 +26,18 @@ class Clipboard {
PP_Flash_Clipboard_Type clipboard_type,
PP_Flash_Clipboard_Format format);
- // Returns true on success, in which case |text_out| will be filled with plain
- // text read from the given clipboard.
- static bool ReadPlainText(Instance* instance,
- PP_Flash_Clipboard_Type clipboard_type,
- std::string* text_out);
-
- // Returns true on success (it may fail if |text| is too big).
- static bool WritePlainText(Instance* instance,
- PP_Flash_Clipboard_Type clipboard_type,
- const std::string& text);
+ // Returns true on success in which case all of |data| will be written to
+ // the clipboard. Otherwise nothing will be written.
+ static bool WriteData(Instance* instance,
+ PP_Flash_Clipboard_Type clipboard_type,
+ const std::vector<PP_Flash_Clipboard_Data_Item>& data);
+
+ // Returns true on success, in which case |out| will be filled with
+ // data read from the given clipboard in the given format.
+ static bool ReadData(Instance* instance,
viettrungluu 2012/02/08 22:25:01 nit: I'd prefer that "Read" precede "Write". ;)
raymes 2012/02/09 00:20:27 Done.
+ PP_Flash_Clipboard_Type clipboard_type,
+ PP_Flash_Clipboard_Format clipboard_format,
+ PP_Var* out);
};
} // namespace flash

Powered by Google App Engine
This is Rietveld 408576698