Update user pod message to use Smart Lock.
[chromium-blink-merge.git] / ppapi / thunk / ppb_tcp_socket_private_api.h
blobebc8070dd4513e62cfed845c6e739ed71e140e0e
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
3 // found in the LICENSE file.
5 #ifndef PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_
6 #define PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_
8 #include "base/memory/ref_counted.h"
9 #include "ppapi/c/private/ppb_tcp_socket_private.h"
10 #include "ppapi/thunk/ppapi_thunk_export.h"
12 namespace ppapi {
14 class TrackedCallback;
16 namespace thunk {
18 class PPAPI_THUNK_EXPORT PPB_TCPSocket_Private_API {
19 public:
20 virtual ~PPB_TCPSocket_Private_API() {}
22 virtual int32_t Connect(const char* host,
23 uint16_t port,
24 scoped_refptr<TrackedCallback> callback) = 0;
25 virtual int32_t ConnectWithNetAddress(
26 const PP_NetAddress_Private* addr,
27 scoped_refptr<TrackedCallback> callback) = 0;
28 virtual PP_Bool GetLocalAddress(PP_NetAddress_Private* local_addr) = 0;
29 virtual PP_Bool GetRemoteAddress(PP_NetAddress_Private* remote_addr) = 0;
30 virtual int32_t SSLHandshake(const char* server_name,
31 uint16_t server_port,
32 scoped_refptr<TrackedCallback> callback) = 0;
33 virtual PP_Resource GetServerCertificate() = 0;
34 virtual PP_Bool AddChainBuildingCertificate(PP_Resource certificate,
35 PP_Bool trusted) = 0;
36 virtual int32_t Read(char* buffer,
37 int32_t bytes_to_read,
38 scoped_refptr<TrackedCallback> callback) = 0;
39 virtual int32_t Write(const char* buffer,
40 int32_t bytes_to_write,
41 scoped_refptr<TrackedCallback> callback) = 0;
42 virtual void Disconnect() = 0;
43 virtual int32_t SetOption(PP_TCPSocketOption_Private name,
44 const PP_Var& value,
45 scoped_refptr<TrackedCallback> callback) = 0;
48 } // namespace thunk
49 } // namespace ppapi
51 #endif // PPAPI_THUNK_PPB_TCP_SOCKET_PRIVATE_API_H_