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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 6724010: Pepper/Flapper: Add IsFormatAvailable() to PPB_Flash_Clipboard. (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/c/private/ppb_flash_clipboard.h ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 PP_Instance /* instance */, 385 PP_Instance /* instance */,
386 std::string /* url */, 386 std::string /* url */,
387 std::string /* target */, 387 std::string /* target */,
388 PP_Bool /* result */) 388 PP_Bool /* result */)
389 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, 389 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop,
390 PP_Instance /* instance */) 390 PP_Instance /* instance */)
391 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, 391 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop,
392 PP_Instance /* instance */) 392 PP_Instance /* instance */)
393 393
394 // PPB_Flash_Clipboard. 394 // PPB_Flash_Clipboard.
395 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable,
396 PP_Instance /* instance */,
397 int /* clipboard_type */,
398 int /* format */,
399 bool /* result */)
395 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, 400 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText,
396 PP_Instance /* instance */, 401 PP_Instance /* instance */,
397 int /* clipboard_type */, 402 int /* clipboard_type */,
398 pp::proxy::SerializedVar /* result */) 403 pp::proxy::SerializedVar /* result */)
399 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, 404 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText,
400 PP_Instance /* instance */, 405 PP_Instance /* instance */,
401 int /* clipboard_type */, 406 int /* clipboard_type */,
402 pp::proxy::SerializedVar /* text */) 407 pp::proxy::SerializedVar /* text */)
403 408
404 // PPB_Flash_File_FileRef. 409 // PPB_Flash_File_FileRef.
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, 740 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated,
736 pp::proxy::SerializedVar /* var */, 741 pp::proxy::SerializedVar /* var */,
737 int64 /* object_class */, 742 int64 /* object_class */,
738 int64 /* object-data */, 743 int64 /* object-data */,
739 PP_Bool /* result */) 744 PP_Bool /* result */)
740 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, 745 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated,
741 PP_Instance /* instance */, 746 PP_Instance /* instance */,
742 int64 /* object_class */, 747 int64 /* object_class */,
743 int64 /* object_data */, 748 int64 /* object_data */,
744 pp::proxy::SerializedVar /* result */) 749 pp::proxy::SerializedVar /* result */)
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_flash_clipboard.h ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698