- add sources.
[platform/framework/web/crosswalk.git] / src / ppapi / proxy / udp_socket_private_resource.h
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.
4
5 #ifndef PPAPI_PROXY_UDP_SOCKET_PRIVATE_RESOURCE_H_
6 #define PPAPI_PROXY_UDP_SOCKET_PRIVATE_RESOURCE_H_
7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "ppapi/proxy/ppapi_proxy_export.h"
11 #include "ppapi/proxy/udp_socket_resource_base.h"
12 #include "ppapi/thunk/ppb_udp_socket_private_api.h"
13
14 namespace ppapi {
15 namespace proxy {
16
17 class PPAPI_PROXY_EXPORT UDPSocketPrivateResource
18     : public UDPSocketResourceBase,
19       public thunk::PPB_UDPSocket_Private_API {
20  public:
21   UDPSocketPrivateResource(Connection connection, PP_Instance instance);
22   virtual ~UDPSocketPrivateResource();
23
24   // PluginResource implementation.
25   virtual thunk::PPB_UDPSocket_Private_API*
26       AsPPB_UDPSocket_Private_API() OVERRIDE;
27
28   // PPB_UDPSocket_Private_API implementation.
29   virtual int32_t SetSocketFeature(PP_UDPSocketFeature_Private name,
30                                    PP_Var value) OVERRIDE;
31   virtual int32_t Bind(const PP_NetAddress_Private* addr,
32                        scoped_refptr<TrackedCallback> callback) OVERRIDE;
33   virtual PP_Bool GetBoundAddress(PP_NetAddress_Private* addr) OVERRIDE;
34   virtual int32_t RecvFrom(char* buffer,
35                            int32_t num_bytes,
36                            scoped_refptr<TrackedCallback> callback) OVERRIDE;
37   virtual PP_Bool GetRecvFromAddress(PP_NetAddress_Private* addr) OVERRIDE;
38   virtual int32_t SendTo(const char* buffer,
39                          int32_t num_bytes,
40                          const PP_NetAddress_Private* addr,
41                          scoped_refptr<TrackedCallback> callback) OVERRIDE;
42   virtual void Close() OVERRIDE;
43
44  private:
45   DISALLOW_COPY_AND_ASSIGN(UDPSocketPrivateResource);
46 };
47
48 }  // namespace proxy
49 }  // namespace ppapi
50
51 #endif  // PPAPI_PROXY_UDP_SOCKET_PRIVATE_RESOURCE_H_