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