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

Unified Diff: ppapi/proxy/ppb_flash_tcp_socket_proxy.cc

Issue 8359010: Convert the Flash interfaces to no longer use GetInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comment Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_flash_tcp_socket_proxy.h ('k') | ppapi/proxy/ppb_flash_udp_socket_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_flash_tcp_socket_proxy.cc
diff --git a/ppapi/proxy/ppb_flash_tcp_socket_proxy.cc b/ppapi/proxy/ppb_flash_tcp_socket_proxy.cc
index 13de6fa5e41d640586d60177028b5dea4c18cbdd..0d5d6a5e642a6bb14aede5a9b391d0dc251ff179 100644
--- a/ppapi/proxy/ppb_flash_tcp_socket_proxy.cc
+++ b/ppapi/proxy/ppb_flash_tcp_socket_proxy.cc
@@ -49,10 +49,6 @@ class AbortCallbackTask : public Task {
PP_CompletionCallback callback_;
};
-InterfaceProxy* CreateFlashTCPSocketProxy(Dispatcher* dispatcher) {
- return new PPB_Flash_TCPSocket_Proxy(dispatcher);
-}
-
} // namespace
class FlashTCPSocket : public PPB_Flash_TCPSocket_API,
@@ -402,18 +398,6 @@ PPB_Flash_TCPSocket_Proxy::~PPB_Flash_TCPSocket_Proxy() {
}
// static
-const InterfaceProxy::Info* PPB_Flash_TCPSocket_Proxy::GetInfo() {
- static const Info info = {
- thunk::GetPPB_Flash_TCPSocket_Thunk(),
- PPB_FLASH_TCPSOCKET_INTERFACE,
- API_ID_PPB_FLASH_TCPSOCKET,
- false,
- &CreateFlashTCPSocketProxy,
- };
- return &info;
-}
-
-// static
PP_Resource PPB_Flash_TCPSocket_Proxy::CreateProxyResource(
PP_Instance instance) {
PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
« no previous file with comments | « ppapi/proxy/ppb_flash_tcp_socket_proxy.h ('k') | ppapi/proxy/ppb_flash_udp_socket_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698