| Index: webkit/glue/webkit_glue.h
|
| diff --git a/webkit/glue/webkit_glue.h b/webkit/glue/webkit_glue.h
|
| index 68c3394a11078ee5d0f3042f8363418876f9723c..a860888c223fea64916f205442b6411b15535263 100644
|
| --- a/webkit/glue/webkit_glue.h
|
| +++ b/webkit/glue/webkit_glue.h
|
| @@ -188,6 +188,11 @@ ui::Clipboard* ClipboardGetClipboard();
|
| bool ClipboardIsFormatAvailable(const ui::Clipboard::FormatType& format,
|
| ui::Clipboard::Buffer buffer);
|
|
|
| +// Reads the available types from the clipboard, if available.
|
| +void ClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer,
|
| + std::vector<string16>* types,
|
| + bool* contains_filenames);
|
| +
|
| // Reads UNICODE text from the clipboard, if available.
|
| void ClipboardReadText(ui::Clipboard::Buffer buffer, string16* result);
|
|
|
| @@ -200,11 +205,6 @@ void ClipboardReadHTML(ui::Clipboard::Buffer buffer, string16* markup,
|
|
|
| void ClipboardReadImage(ui::Clipboard::Buffer buffer, std::string* data);
|
|
|
| -// Reads the available types from the clipboard, if available.
|
| -bool ClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer,
|
| - std::vector<string16>* types,
|
| - bool* contains_filenames);
|
| -
|
| // Reads one type of data from the clipboard, if available.
|
| bool ClipboardReadData(ui::Clipboard::Buffer buffer, const string16& type,
|
| string16* data, string16* metadata);
|
|
|