| Index: ppapi/proxy/ppb_tcp_socket_proxy.h
|
| diff --git a/ppapi/proxy/ppb_flash_tcp_socket_proxy.h b/ppapi/proxy/ppb_tcp_socket_proxy.h
|
| similarity index 62%
|
| rename from ppapi/proxy/ppb_flash_tcp_socket_proxy.h
|
| rename to ppapi/proxy/ppb_tcp_socket_proxy.h
|
| index 3344f2c6841699612e4bd18f09d468d6163f146f..8b378bab3d0b32014fdfdebc0766caf7aa00755f 100644
|
| --- a/ppapi/proxy/ppb_flash_tcp_socket_proxy.h
|
| +++ b/ppapi/proxy/ppb_tcp_socket_proxy.h
|
| @@ -2,32 +2,32 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef PPAPI_PROXY_PPB_FLASH_TCP_SOCKET_PROXY_H_
|
| -#define PPAPI_PROXY_PPB_FLASH_TCP_SOCKET_PROXY_H_
|
| +#ifndef PPAPI_PROXY_PPB_TCP_SOCKET_PROXY_H_
|
| +#define PPAPI_PROXY_PPB_TCP_SOCKET_PROXY_H_
|
|
|
| #include <string>
|
|
|
| #include "base/basictypes.h"
|
| #include "ppapi/c/pp_instance.h"
|
| #include "ppapi/c/pp_resource.h"
|
| -#include "ppapi/c/private/ppb_flash_tcp_socket.h"
|
| +#include "ppapi/c/private/ppb_tcp_socket.h"
|
| #include "ppapi/proxy/interface_proxy.h"
|
| #include "ppapi/proxy/ppapi_proxy_export.h"
|
|
|
| namespace ppapi {
|
| namespace proxy {
|
|
|
| -// The maximum number of bytes that each PpapiHostMsg_PPBFlashTCPSocket_Read
|
| +// The maximum number of bytes that each PpapiHostMsg_PPBTCPSocket_Read
|
| // message is allowed to request.
|
| -PPAPI_PROXY_EXPORT extern const int32_t kFlashTCPSocketMaxReadSize;
|
| -// The maximum number of bytes that each PpapiHostMsg_PPBFlashTCPSocket_Write
|
| +PPAPI_PROXY_EXPORT extern const int32_t kTCPSocketMaxReadSize;
|
| +// The maximum number of bytes that each PpapiHostMsg_PPBTCPSocket_Write
|
| // message is allowed to carry.
|
| -PPAPI_PROXY_EXPORT extern const int32_t kFlashTCPSocketMaxWriteSize;
|
| +PPAPI_PROXY_EXPORT extern const int32_t kTCPSocketMaxWriteSize;
|
|
|
| -class PPB_Flash_TCPSocket_Proxy : public InterfaceProxy {
|
| +class PPB_TCPSocket_Proxy : public InterfaceProxy {
|
| public:
|
| - PPB_Flash_TCPSocket_Proxy(Dispatcher* dispatcher);
|
| - virtual ~PPB_Flash_TCPSocket_Proxy();
|
| + PPB_TCPSocket_Proxy(Dispatcher* dispatcher);
|
| + virtual ~PPB_TCPSocket_Proxy();
|
|
|
| static PP_Resource CreateProxyResource(PP_Instance instance);
|
|
|
| @@ -39,8 +39,8 @@ class PPB_Flash_TCPSocket_Proxy : public InterfaceProxy {
|
| void OnMsgConnectACK(uint32 plugin_dispatcher_id,
|
| uint32 socket_id,
|
| bool succeeded,
|
| - const PP_Flash_NetAddress& local_addr,
|
| - const PP_Flash_NetAddress& remote_addr);
|
| + const PP_NetAddress& local_addr,
|
| + const PP_NetAddress& remote_addr);
|
| void OnMsgSSLHandshakeACK(uint32 plugin_dispatcher_id,
|
| uint32 socket_id,
|
| bool succeeded);
|
| @@ -53,10 +53,10 @@ class PPB_Flash_TCPSocket_Proxy : public InterfaceProxy {
|
| bool succeeded,
|
| int32_t bytes_written);
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(PPB_Flash_TCPSocket_Proxy);
|
| + DISALLOW_COPY_AND_ASSIGN(PPB_TCPSocket_Proxy);
|
| };
|
|
|
| } // namespace proxy
|
| } // namespace ppapi
|
|
|
| -#endif // PPAPI_PROXY_PPB_FLASH_TCP_SOCKET_PROXY_H_
|
| +#endif // PPAPI_PROXY_PPB_TCP_SOCKET_PROXY_H_
|
|
|