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_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_ | 5 #ifndef PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_ |
6 #define PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_ | 6 #define PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "ppapi/c/private/ppb_tcp_socket_private.h" | 9 #include "ppapi/c/private/ppb_tcp_socket_private.h" |
10 #include "ppapi/thunk/ppapi_thunk_export.h" | 10 #include "ppapi/thunk/ppapi_thunk_export.h" |
(...skipping 22 matching lines...) Expand all Loading... | |
33 virtual PP_Resource GetServerCertificate() = 0; | 33 virtual PP_Resource GetServerCertificate() = 0; |
34 virtual PP_Bool AddChainBuildingCertificate(PP_Resource certificate, | 34 virtual PP_Bool AddChainBuildingCertificate(PP_Resource certificate, |
35 PP_Bool trusted) = 0; | 35 PP_Bool trusted) = 0; |
36 virtual int32_t Read(char* buffer, | 36 virtual int32_t Read(char* buffer, |
37 int32_t bytes_to_read, | 37 int32_t bytes_to_read, |
38 scoped_refptr<TrackedCallback> callback) = 0; | 38 scoped_refptr<TrackedCallback> callback) = 0; |
39 virtual int32_t Write(const char* buffer, | 39 virtual int32_t Write(const char* buffer, |
40 int32_t bytes_to_write, | 40 int32_t bytes_to_write, |
41 scoped_refptr<TrackedCallback> callback) = 0; | 41 scoped_refptr<TrackedCallback> callback) = 0; |
42 virtual void Disconnect() = 0; | 42 virtual void Disconnect() = 0; |
43 virtual int32_t SetSocketFeature(PP_TCPSocketFeature_Private name, | |
44 PP_Var value, | |
yzshen1
2013/02/08 21:51:11
wrong indent.
Wez
2013/02/10 04:47:02
Done.
| |
45 scoped_refptr<TrackedCallback> callback) = 0; | |
43 }; | 46 }; |
44 | 47 |
45 } // namespace thunk | 48 } // namespace thunk |
46 } // namespace ppapi | 49 } // namespace ppapi |
47 | 50 |
48 #endif // PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_ | 51 #endif // PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_ |
OLD | NEW |