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

Unified Diff: ppapi/proxy/ppb_tcp_socket_private_proxy.h

Issue 8506016: Remove 'Flash' from TCP/UDP Pepper interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resolved last comments Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_flash_udp_socket_proxy.cc ('k') | ppapi/proxy/ppb_tcp_socket_private_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_tcp_socket_private_proxy.h
diff --git a/ppapi/proxy/ppb_flash_tcp_socket_proxy.h b/ppapi/proxy/ppb_tcp_socket_private_proxy.h
similarity index 66%
rename from ppapi/proxy/ppb_flash_tcp_socket_proxy.h
rename to ppapi/proxy/ppb_tcp_socket_private_proxy.h
index f20f15e6818d13e7634f8c2e6b91a6ab8a6e709a..ec89fe2c2ae51c2e0496e1a5ea58205e8c471d50 100644
--- a/ppapi/proxy/ppb_flash_tcp_socket_proxy.h
+++ b/ppapi/proxy/ppb_tcp_socket_private_proxy.h
@@ -2,38 +2,40 @@
// 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_PRIVATE_PROXY_H_
+#define PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_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_private.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_Private_Proxy : public InterfaceProxy {
public:
- PPB_Flash_TCPSocket_Proxy(Dispatcher* dispatcher);
- virtual ~PPB_Flash_TCPSocket_Proxy();
+ PPB_TCPSocket_Private_Proxy(Dispatcher* dispatcher);
+ virtual ~PPB_TCPSocket_Private_Proxy();
static PP_Resource CreateProxyResource(PP_Instance instance);
// InterfaceProxy implementation.
virtual bool OnMessageReceived(const IPC::Message& msg);
+ static const ApiID kApiID = API_ID_PPB_TCPSOCKET_PRIVATE;
+
private:
// Browser->plugin message handlers.
void OnMsgConnectACK(uint32 plugin_dispatcher_id,
@@ -53,10 +55,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_Private_Proxy);
};
} // namespace proxy
} // namespace ppapi
-#endif // PPAPI_PROXY_PPB_FLASH_TCP_SOCKET_PROXY_H_
+#endif // PPAPI_PROXY_PPB_TCP_SOCKET_PRIVATE_PROXY_H_
« no previous file with comments | « ppapi/proxy/ppb_flash_udp_socket_proxy.cc ('k') | ppapi/proxy/ppb_tcp_socket_private_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698