diff options
Diffstat (limited to 'webkit/glue/webclipboard_impl.cc')
-rw-r--r-- | webkit/glue/webclipboard_impl.cc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/webkit/glue/webclipboard_impl.cc b/webkit/glue/webclipboard_impl.cc index 9eddb68..10dddab 100644 --- a/webkit/glue/webclipboard_impl.cc +++ b/webkit/glue/webclipboard_impl.cc @@ -67,7 +67,15 @@ bool WebClipboardImpl::isFormatAvailable(Format format, Buffer buffer) { ui::Clipboard::FormatType format_type; ui::Clipboard::Buffer buffer_type; + if (!ConvertBufferType(buffer, &buffer_type)) + return false; + switch (format) { + case FormatPlainText: + return ClipboardIsFormatAvailable(ui::Clipboard::GetPlainTextFormatType(), + buffer_type) || + ClipboardIsFormatAvailable(ui::Clipboard::GetPlainTextWFormatType(), + buffer_type); case FormatHTML: format_type = ui::Clipboard::GetHtmlFormatType(); break; @@ -84,9 +92,6 @@ bool WebClipboardImpl::isFormatAvailable(Format format, Buffer buffer) { return false; } - if (!ConvertBufferType(buffer, &buffer_type)) - return false; - return ClipboardIsFormatAvailable(format_type, buffer_type); } |