| Index: chrome/browser/renderer_host/resource_message_filter.h
|
| ===================================================================
|
| --- chrome/browser/renderer_host/resource_message_filter.h (revision 25640)
|
| +++ chrome/browser/renderer_host/resource_message_filter.h (working copy)
|
| @@ -173,10 +173,11 @@
|
| void OnClipboardWriteObjects(const Clipboard::ObjectMap& objects);
|
|
|
| void OnClipboardIsFormatAvailable(Clipboard::FormatType format,
|
| + Clipboard::Buffer buffer,
|
| IPC::Message* reply);
|
| - void OnClipboardReadText(IPC::Message* reply);
|
| - void OnClipboardReadAsciiText(IPC::Message* reply);
|
| - void OnClipboardReadHTML(IPC::Message* reply);
|
| + void OnClipboardReadText(Clipboard::Buffer buffer, IPC::Message* reply);
|
| + void OnClipboardReadAsciiText(Clipboard::Buffer buffer, IPC::Message* reply);
|
| + void OnClipboardReadHTML(Clipboard::Buffer buffer, IPC::Message* reply);
|
|
|
| #if !defined(OS_MACOSX)
|
| // Not handled in the IO thread on Mac.
|
| @@ -254,10 +255,12 @@
|
| void DoOnGetWindowRect(gfx::NativeViewId view, IPC::Message* reply_msg);
|
| void DoOnGetRootWindowRect(gfx::NativeViewId view, IPC::Message* reply_msg);
|
| void DoOnClipboardIsFormatAvailable(Clipboard::FormatType format,
|
| + Clipboard::Buffer buffer,
|
| IPC::Message* reply_msg);
|
| - void DoOnClipboardReadText(IPC::Message* reply_msg);
|
| - void DoOnClipboardReadAsciiText(IPC::Message* reply_msg);
|
| - void DoOnClipboardReadHTML(IPC::Message* reply_msg);
|
| + void DoOnClipboardReadText(Clipboard::Buffer buffer, IPC::Message* reply_msg);
|
| + void DoOnClipboardReadAsciiText(Clipboard::Buffer buffer,
|
| + IPC::Message* reply_msg);
|
| + void DoOnClipboardReadHTML(Clipboard::Buffer buffer, IPC::Message* reply_msg);
|
| #endif
|
|
|
| bool CheckBenchmarkingEnabled();
|
|
|