OLD | NEW |
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 #ifndef PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ |
6 #define PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 bool succeeded, | 50 bool succeeded, |
51 const PPB_X509Certificate_Fields& certificate_fields); | 51 const PPB_X509Certificate_Fields& certificate_fields); |
52 void OnMsgReadACK(uint32 plugin_dispatcher_id, | 52 void OnMsgReadACK(uint32 plugin_dispatcher_id, |
53 uint32 socket_id, | 53 uint32 socket_id, |
54 bool succeeded, | 54 bool succeeded, |
55 const std::string& data); | 55 const std::string& data); |
56 void OnMsgWriteACK(uint32 plugin_dispatcher_id, | 56 void OnMsgWriteACK(uint32 plugin_dispatcher_id, |
57 uint32 socket_id, | 57 uint32 socket_id, |
58 bool succeeded, | 58 bool succeeded, |
59 int32_t bytes_written); | 59 int32_t bytes_written); |
| 60 void OnMsgSetBoolOptionACK(uint32 plugin_dispatcher_id, |
| 61 uint32 socket_id, |
| 62 bool succeeded); |
60 | 63 |
61 DISALLOW_COPY_AND_ASSIGN(PPB_TCPSocket_Private_Proxy); | 64 DISALLOW_COPY_AND_ASSIGN(PPB_TCPSocket_Private_Proxy); |
62 }; | 65 }; |
63 | 66 |
64 } // namespace proxy | 67 } // namespace proxy |
65 } // namespace ppapi | 68 } // namespace ppapi |
66 | 69 |
67 #endif // PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ | 70 #endif // PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_ |
OLD | NEW |