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

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

Issue 7535007: Implement PPB_Flash_TCPSocket.InitiateSSL. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add two missing files. Created 9 years, 4 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) 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 std::string /* local_addr_as_string */, 205 std::string /* local_addr_as_string */,
206 std::string /* remote_addr_as_string */) 206 std::string /* remote_addr_as_string */)
207 207
208 // PPB_Flash_TCPSocket. 208 // PPB_Flash_TCPSocket.
209 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashTCPSocket_ConnectACK, 209 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBFlashTCPSocket_ConnectACK,
210 uint32 /* plugin_dispatcher_id */, 210 uint32 /* plugin_dispatcher_id */,
211 uint32 /* socket_id */, 211 uint32 /* socket_id */,
212 bool /* succeeded */, 212 bool /* succeeded */,
213 PP_Flash_NetAddress /* local_addr */, 213 PP_Flash_NetAddress /* local_addr */,
214 PP_Flash_NetAddress /* remote_addr */) 214 PP_Flash_NetAddress /* remote_addr */)
215 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashTCPSocket_SSLHandshakeACK,
216 uint32 /* plugin_dispatcher_id */,
217 uint32 /* socket_id */,
218 bool /* succeeded */)
215 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_ReadACK, 219 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_ReadACK,
216 uint32 /* plugin_dispatcher_id */, 220 uint32 /* plugin_dispatcher_id */,
217 uint32 /* socket_id */, 221 uint32 /* socket_id */,
218 bool /* succeeded */, 222 bool /* succeeded */,
219 std::string /* data */) 223 std::string /* data */)
220 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_WriteACK, 224 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashTCPSocket_WriteACK,
221 uint32 /* plugin_dispatcher_id */, 225 uint32 /* plugin_dispatcher_id */,
222 uint32 /* socket_id */, 226 uint32 /* socket_id */,
223 bool /* succeeded */, 227 bool /* succeeded */,
224 int32_t /* bytes_written */) 228 int32_t /* bytes_written */)
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 int32 /* routing_id */, 677 int32 /* routing_id */,
674 uint32 /* plugin_dispatcher_id */, 678 uint32 /* plugin_dispatcher_id */,
675 uint32 /* socket_id */) 679 uint32 /* socket_id */)
676 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBFlashTCPSocket_Connect, 680 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBFlashTCPSocket_Connect,
677 uint32 /* socket_id */, 681 uint32 /* socket_id */,
678 std::string /* host */, 682 std::string /* host */,
679 uint16_t /* port */) 683 uint16_t /* port */)
680 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_ConnectWithNetAddress, 684 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_ConnectWithNetAddress,
681 uint32 /* socket_id */, 685 uint32 /* socket_id */,
682 PP_Flash_NetAddress /* net_addr */) 686 PP_Flash_NetAddress /* net_addr */)
687 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBFlashTCPSocket_SSLHandshake,
688 uint32 /* socket_id */,
689 std::string /* host */,
690 uint16_t /* port */)
683 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Read, 691 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Read,
684 uint32 /* socket_id */, 692 uint32 /* socket_id */,
685 int32_t /* bytes_to_read */) 693 int32_t /* bytes_to_read */)
686 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Write, 694 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBFlashTCPSocket_Write,
687 uint32 /* socket_id */, 695 uint32 /* socket_id */,
688 std::string /* data */) 696 std::string /* data */)
689 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBFlashTCPSocket_Disconnect, 697 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBFlashTCPSocket_Disconnect,
690 uint32 /* socket_id */) 698 uint32 /* socket_id */)
691 699
692 // PPB_Font. 700 // PPB_Font.
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1013 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1006 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1014 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1007 pp::proxy::HostResource /* video_decoder */, 1015 pp::proxy::HostResource /* video_decoder */,
1008 int32_t /* picture buffer id */) 1016 int32_t /* picture buffer id */)
1009 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1017 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1010 pp::proxy::HostResource /* video_decoder */) 1018 pp::proxy::HostResource /* video_decoder */)
1011 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1019 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1012 pp::proxy::HostResource /* video_decoder */) 1020 pp::proxy::HostResource /* video_decoder */)
1013 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1021 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1014 pp::proxy::HostResource /* video_decoder */) 1022 pp::proxy::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698