Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Unified Diff: chrome/browser/renderer_host/resource_message_filter.h

Issue 174367: Change the ChromiumPasteboard to have a notion of an alternate clipboard... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host_view_gtk.cc ('k') | chrome/browser/renderer_host/resource_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698