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

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

Issue 9728001: Make the file chooser use PP_ArrayOutput (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/proxy/enter_proxy.h ('k') | ppapi/proxy/ppb_file_chooser_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 PP_Bool /* result */) 695 PP_Bool /* result */)
696 696
697 // PPB_FileChooser. 697 // PPB_FileChooser.
698 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, 698 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create,
699 PP_Instance /* instance */, 699 PP_Instance /* instance */,
700 int /* mode */, 700 int /* mode */,
701 std::string /* accept_mime_types */, 701 std::string /* accept_mime_types */,
702 ppapi::HostResource /* result */) 702 ppapi::HostResource /* result */)
703 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileChooser_Show, 703 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileChooser_Show,
704 ppapi::HostResource /* file_chooser */, 704 ppapi::HostResource /* file_chooser */,
705 bool /* save_as */, 705 PP_Bool /* save_as */,
706 std::string /* suggested_file_name */, 706 ppapi::proxy::SerializedVar /* suggested_file_name */,
707 bool /* require_user_gesture */) 707 bool /* require_user_gesture */)
708 708
709 // PPB_FileIO. 709 // PPB_FileIO.
710 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileIO_Create, 710 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileIO_Create,
711 PP_Instance /* instance */, 711 PP_Instance /* instance */,
712 ppapi::HostResource /* result */) 712 ppapi::HostResource /* result */)
713 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileIO_Open, 713 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileIO_Open,
714 ppapi::HostResource /* host_resource */, 714 ppapi::HostResource /* host_resource */,
715 ppapi::HostResource /* file_ref_resource */, 715 ppapi::HostResource /* file_ref_resource */,
716 int32_t /* open_flags */) 716 int32_t /* open_flags */)
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, 1333 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept,
1334 int32 /* tcp_client_socket_routing_id */, 1334 int32 /* tcp_client_socket_routing_id */,
1335 uint32 /* server_socket_id */) 1335 uint32 /* server_socket_id */)
1336 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, 1336 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy,
1337 uint32 /* socket_id */) 1337 uint32 /* socket_id */)
1338 1338
1339 // PPB_Font. 1339 // PPB_Font.
1340 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1340 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1341 std::string /* result */) 1341 std::string /* result */)
1342 #endif // !defined(OS_NACL) 1342 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « ppapi/proxy/enter_proxy.h ('k') | ppapi/proxy/ppb_file_chooser_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698