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

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

Issue 9693024: Add the PPAPI X509 Certificate interface and implementation. (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
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 26 matching lines...) Expand all
37 #include "ppapi/proxy/ppapi_param_traits.h" 37 #include "ppapi/proxy/ppapi_param_traits.h"
38 #include "ppapi/proxy/ppapi_proxy_export.h" 38 #include "ppapi/proxy/ppapi_proxy_export.h"
39 #include "ppapi/proxy/serialized_flash_menu.h" 39 #include "ppapi/proxy/serialized_flash_menu.h"
40 #include "ppapi/proxy/serialized_structs.h" 40 #include "ppapi/proxy/serialized_structs.h"
41 #include "ppapi/shared_impl/ppapi_preferences.h" 41 #include "ppapi/shared_impl/ppapi_preferences.h"
42 #include "ppapi/shared_impl/ppb_device_ref_shared.h" 42 #include "ppapi/shared_impl/ppb_device_ref_shared.h"
43 #include "ppapi/shared_impl/ppb_input_event_shared.h" 43 #include "ppapi/shared_impl/ppb_input_event_shared.h"
44 #include "ppapi/shared_impl/ppb_network_list_private_shared.h" 44 #include "ppapi/shared_impl/ppb_network_list_private_shared.h"
45 #include "ppapi/shared_impl/ppb_url_request_info_shared.h" 45 #include "ppapi/shared_impl/ppb_url_request_info_shared.h"
46 #include "ppapi/shared_impl/ppb_view_shared.h" 46 #include "ppapi/shared_impl/ppb_view_shared.h"
47 #include "ppapi/shared_impl/private/ppb_flash_x509_certificate_shared.h"
47 #include "ppapi/shared_impl/private/ppb_host_resolver_shared.h" 48 #include "ppapi/shared_impl/private/ppb_host_resolver_shared.h"
48 49
49 #undef IPC_MESSAGE_EXPORT 50 #undef IPC_MESSAGE_EXPORT
50 #define IPC_MESSAGE_EXPORT PPAPI_PROXY_EXPORT 51 #define IPC_MESSAGE_EXPORT PPAPI_PROXY_EXPORT
51 52
52 #define IPC_MESSAGE_START PpapiMsgStart 53 #define IPC_MESSAGE_START PpapiMsgStart
53 54
54 IPC_ENUM_TRAITS(PP_DeviceType_Dev) 55 IPC_ENUM_TRAITS(PP_DeviceType_Dev)
55 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) 56 IPC_ENUM_TRAITS(PP_InputEvent_MouseButton)
56 IPC_ENUM_TRAITS(PP_InputEvent_Type) 57 IPC_ENUM_TRAITS(PP_InputEvent_Type)
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 uint32 /* plugin_dispatcher_id */, 1330 uint32 /* plugin_dispatcher_id */,
1330 PP_Resource /* socket_resource */, 1331 PP_Resource /* socket_resource */,
1331 PP_NetAddress_Private /* addr */, 1332 PP_NetAddress_Private /* addr */,
1332 int32_t /* backlog */) 1333 int32_t /* backlog */)
1333 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, 1334 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept,
1334 int32 /* tcp_client_socket_routing_id */, 1335 int32 /* tcp_client_socket_routing_id */,
1335 uint32 /* server_socket_id */) 1336 uint32 /* server_socket_id */)
1336 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, 1337 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy,
1337 uint32 /* socket_id */) 1338 uint32 /* socket_id */)
1338 1339
1340 // PPB_Flash_X509_Certificate
1341 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1342 std::vector<char> /* der */,
1343 bool /* succeeded */,
1344 ppapi::PPB_X509Certificate_Fields /* result */)
1345
1339 // PPB_Font. 1346 // PPB_Font.
1340 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1347 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1341 std::string /* result */) 1348 std::string /* result */)
1342 #endif // !defined(OS_NACL) 1349 #endif // !defined(OS_NACL)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698