diff options
Diffstat (limited to 'chrome/renderer/renderer_glue.cc')
-rw-r--r-- | chrome/renderer/renderer_glue.cc | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/chrome/renderer/renderer_glue.cc b/chrome/renderer/renderer_glue.cc index 22b2775..6cace23 100644 --- a/chrome/renderer/renderer_glue.cc +++ b/chrome/renderer/renderer_glue.cc @@ -189,17 +189,7 @@ Clipboard* ClipboardGetClipboard(){ return NULL; } -#if defined(OS_LINUX) -// TODO(port): This should replace the method below (the unsigned int is a -// windows type). We may need to convert the type of format so it can be sent -// over IPC. -bool ClipboardIsFormatAvailable(Clipboard::FormatType format) { - NOTIMPLEMENTED(); - return false; -} -#endif - -bool ClipboardIsFormatAvailable(unsigned int format) { +bool ClipboardIsFormatAvailable(const Clipboard::FormatType& format) { bool result; RenderThread::current()->Send( new ViewHostMsg_ClipboardIsFormatAvailable(format, &result)); |