Index: webkit/tools/test_shell/simple_clipboard_impl.cc |
diff --git a/webkit/tools/test_shell/simple_clipboard_impl.cc b/webkit/tools/test_shell/simple_clipboard_impl.cc |
index cf7c43b8ea1ba28eeb2d931f05e9df7c6e544337..cd12ded46cd1c4acca3a3a3ac2959e35e11225a2 100644 |
--- a/webkit/tools/test_shell/simple_clipboard_impl.cc |
+++ b/webkit/tools/test_shell/simple_clipboard_impl.cc |
@@ -36,6 +36,13 @@ bool ClipboardIsFormatAvailable(const ui::Clipboard::FormatType& format, |
return ClipboardGetClipboard()->IsFormatAvailable(format, buffer); |
} |
+// TODO(dcheng): Implement. |
+void ClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer, |
+ std::vector<string16>* types, |
+ bool* contains_filenames) { |
+ return; |
+} |
+ |
void ClipboardReadText(ui::Clipboard::Buffer buffer, string16* result) { |
ClipboardGetClipboard()->ReadText(buffer, result); |
} |
@@ -56,13 +63,6 @@ void ClipboardReadImage(ui::Clipboard::Buffer buffer, std::string* data) { |
ClipboardGetClipboard()->ReadImage(buffer, data); |
} |
-// TODO(dcheng): Implement. |
-bool ClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer, |
- std::vector<string16>* types, |
- bool* contains_filenames) { |
- return false; |
-} |
- |
bool ClipboardReadData(ui::Clipboard::Buffer buffer, const string16& type, |
string16* data, string16* metadata) { |
return false; |