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

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

Issue 22923014: TCPSockets are switched to the new Pepper proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync. Created 7 years, 3 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 2013 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_SHARED_IMPL_PRIVATE_TCP_SOCKET_PRIVATE_IMPL_H_ 5 #ifndef PPAPI_PROXY_TCP_SOCKET_PRIVATE_RESOURCE_H_
6 #define PPAPI_SHARED_IMPL_PRIVATE_TCP_SOCKET_PRIVATE_IMPL_H_ 6 #define PPAPI_PROXY_TCP_SOCKET_PRIVATE_RESOURCE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "ppapi/shared_impl/resource.h" 10 #include "ppapi/proxy/tcp_socket_resource_base.h"
11 #include "ppapi/shared_impl/tcp_socket_shared.h"
12 #include "ppapi/thunk/ppb_tcp_socket_private_api.h" 11 #include "ppapi/thunk/ppb_tcp_socket_private_api.h"
13 12
14 namespace ppapi { 13 namespace ppapi {
14 namespace proxy {
15 15
16 // This class provides the shared implementation of a 16 class PPAPI_PROXY_EXPORT TCPSocketPrivateResource
17 // PPB_TCPSocket_Private. The functions that actually send messages
18 // to browser are implemented differently for the proxied and
19 // non-proxied derived classes.
20 class PPAPI_SHARED_EXPORT TCPSocketPrivateImpl
21 : public thunk::PPB_TCPSocket_Private_API, 17 : public thunk::PPB_TCPSocket_Private_API,
22 public Resource, 18 public TCPSocketResourceBase {
23 public TCPSocketShared {
24 public: 19 public:
25 // C-tor used in Impl case. 20 // C-tor used for new sockets.
26 TCPSocketPrivateImpl(PP_Instance instance, uint32 socket_id); 21 TCPSocketPrivateResource(Connection connection, PP_Instance instance);
27 // C-tor used in Proxy case.
28 TCPSocketPrivateImpl(const HostResource& resource, uint32 socket_id);
29 22
30 virtual ~TCPSocketPrivateImpl(); 23 // C-tor used for already accepted sockets.
24 TCPSocketPrivateResource(Connection connection,
25 PP_Instance instance,
26 int pending_resource_id,
27 const PP_NetAddress_Private& local_addr,
28 const PP_NetAddress_Private& remote_addr);
31 29
32 // Resource overrides. 30 virtual ~TCPSocketPrivateResource();
31
32 // PluginResource overrides.
33 virtual PPB_TCPSocket_Private_API* AsPPB_TCPSocket_Private_API() OVERRIDE; 33 virtual PPB_TCPSocket_Private_API* AsPPB_TCPSocket_Private_API() OVERRIDE;
34 34
35 // PPB_TCPSocket_Private_API implementation. 35 // PPB_TCPSocket_Private_API implementation.
36 virtual int32_t Connect(const char* host, 36 virtual int32_t Connect(const char* host,
37 uint16_t port, 37 uint16_t port,
38 scoped_refptr<TrackedCallback> callback) OVERRIDE; 38 scoped_refptr<TrackedCallback> callback) OVERRIDE;
39 virtual int32_t ConnectWithNetAddress( 39 virtual int32_t ConnectWithNetAddress(
40 const PP_NetAddress_Private* addr, 40 const PP_NetAddress_Private* addr,
41 scoped_refptr<TrackedCallback> callback) OVERRIDE; 41 scoped_refptr<TrackedCallback> callback) OVERRIDE;
42 virtual PP_Bool GetLocalAddress(PP_NetAddress_Private* local_addr) OVERRIDE; 42 virtual PP_Bool GetLocalAddress(PP_NetAddress_Private* local_addr) OVERRIDE;
43 virtual PP_Bool GetRemoteAddress(PP_NetAddress_Private* remote_addr) OVERRIDE; 43 virtual PP_Bool GetRemoteAddress(PP_NetAddress_Private* remote_addr) OVERRIDE;
44 virtual int32_t SSLHandshake( 44 virtual int32_t SSLHandshake(
45 const char* server_name, 45 const char* server_name,
46 uint16_t server_port, 46 uint16_t server_port,
47 scoped_refptr<TrackedCallback> callback) OVERRIDE; 47 scoped_refptr<TrackedCallback> callback) OVERRIDE;
48 virtual PP_Resource GetServerCertificate() OVERRIDE; 48 virtual PP_Resource GetServerCertificate() OVERRIDE;
49 virtual PP_Bool AddChainBuildingCertificate(PP_Resource certificate, 49 virtual PP_Bool AddChainBuildingCertificate(PP_Resource certificate,
50 PP_Bool trusted) OVERRIDE; 50 PP_Bool trusted) OVERRIDE;
51 virtual int32_t Read(char* buffer, 51 virtual int32_t Read(char* buffer,
52 int32_t bytes_to_read, 52 int32_t bytes_to_read,
53 scoped_refptr<TrackedCallback> callback) OVERRIDE; 53 scoped_refptr<TrackedCallback> callback) OVERRIDE;
54 virtual int32_t Write(const char* buffer, 54 virtual int32_t Write(const char* buffer,
55 int32_t bytes_to_write, 55 int32_t bytes_to_write,
56 scoped_refptr<TrackedCallback> callback) OVERRIDE; 56 scoped_refptr<TrackedCallback> callback) OVERRIDE;
57 virtual void Disconnect() OVERRIDE; 57 virtual void Disconnect() OVERRIDE;
58 virtual int32_t SetOption(PP_TCPSocketOption_Private name, 58 virtual int32_t SetOption(PP_TCPSocketOption_Private name,
59 const PP_Var& value, 59 const PP_Var& value,
60 scoped_refptr<TrackedCallback> callback) OVERRIDE; 60 scoped_refptr<TrackedCallback> callback) OVERRIDE;
61 61
62 // TCPSocketShared implementation.
63 virtual Resource* GetOwnerResource() OVERRIDE;
64
65 // TCPSocketShared overrides.
66 virtual int32_t OverridePPError(int32_t pp_error) OVERRIDE;
67
68 private: 62 private:
69 DISALLOW_COPY_AND_ASSIGN(TCPSocketPrivateImpl); 63 DISALLOW_COPY_AND_ASSIGN(TCPSocketPrivateResource);
70 }; 64 };
71 65
66 } // namespace proxy
72 } // namespace ppapi 67 } // namespace ppapi
73 68
74 #endif // PPAPI_SHARED_IMPL_PRIVATE_TCP_SOCKET_PRIVATE_IMPL_H_ 69 #endif // PPAPI_PROXY_TCP_SOCKET_PRIVATE_RESOURCE_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/tcp_server_socket_private_resource.cc ('k') | ppapi/proxy/tcp_socket_private_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698