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

Unified Diff: ppapi/proxy/ppapi_messages_internal.h

Issue 6650029: Pepper/Flapper: Implement proxy for clipboard stuff. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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
« no previous file with comments | « ppapi/proxy/interface_id.h ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppapi_messages_internal.h
diff --git a/ppapi/proxy/ppapi_messages_internal.h b/ppapi/proxy/ppapi_messages_internal.h
index 129502a643b9889a8f333f20f042038f9a68b1a8..5ffaa9f7a234827407b6437181329da34677cc12 100644
--- a/ppapi/proxy/ppapi_messages_internal.h
+++ b/ppapi/proxy/ppapi_messages_internal.h
@@ -356,6 +356,17 @@ IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop,
IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop,
PP_Instance /* instance */)
+// PPB_Flash_Clipboard.
+IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText,
+ PP_Instance /* instance */,
+ int /* clipboard_type */,
+ pp::proxy::SerializedVar /* result */)
+IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_WritePlainText,
brettw 2011/03/09 17:13:18 Does this really need to be a sync message? It see
viettrungluu 2011/03/09 17:35:56 Hmmm, could there be any issues if the plugin subs
brettw 2011/03/09 17:39:37 Over the IPC the contents of the var are passed by
viettrungluu 2011/03/09 18:09:39 Done then. I think.
+ PP_Instance /* instance */,
+ int /* clipboard_type */,
+ pp::proxy::SerializedVar /* text */,
+ int32_t /* result */)
+
// PPB_Flash_File_FileRef.
IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile,
pp::proxy::HostResource /* file_ref */,
« no previous file with comments | « ppapi/proxy/interface_id.h ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698