| Index: ppapi/proxy/ppb_flash_net_connector_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_flash_net_connector_proxy.cc b/ppapi/proxy/ppb_flash_net_connector_proxy.cc
|
| index dee10278475dcd2dd153accc80a8e0ec9313e3f6..2731cfbf6fdf237d549feca69f6f6ee47ecd0a16 100644
|
| --- a/ppapi/proxy/ppb_flash_net_connector_proxy.cc
|
| +++ b/ppapi/proxy/ppb_flash_net_connector_proxy.cc
|
| @@ -187,14 +187,6 @@ struct PPB_Flash_NetConnector_Proxy::ConnectCallbackInfo {
|
| PP_Flash_NetAddress remote_addr;
|
| };
|
|
|
| -namespace {
|
| -
|
| -InterfaceProxy* CreateFlashNetConnectorProxy(Dispatcher* dispatcher) {
|
| - return new PPB_Flash_NetConnector_Proxy(dispatcher);
|
| -}
|
| -
|
| -} // namespace
|
| -
|
| PPB_Flash_NetConnector_Proxy::PPB_Flash_NetConnector_Proxy(
|
| Dispatcher* dispatcher)
|
| : InterfaceProxy(dispatcher),
|
| @@ -205,18 +197,6 @@ PPB_Flash_NetConnector_Proxy::~PPB_Flash_NetConnector_Proxy() {
|
| }
|
|
|
| // static
|
| -const InterfaceProxy::Info* PPB_Flash_NetConnector_Proxy::GetInfo() {
|
| - static const Info info = {
|
| - ppapi::thunk::GetPPB_Flash_NetConnector_Thunk(),
|
| - PPB_FLASH_NETCONNECTOR_INTERFACE,
|
| - API_ID_PPB_FLASH_NETCONNECTOR,
|
| - false,
|
| - &CreateFlashNetConnectorProxy
|
| - };
|
| - return &info;
|
| -}
|
| -
|
| -// static
|
| PP_Resource PPB_Flash_NetConnector_Proxy::CreateProxyResource(
|
| PP_Instance instance) {
|
| PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
|
|
|