Index: ppapi/proxy/ppb_instance_proxy.cc |
diff --git a/ppapi/proxy/ppb_instance_proxy.cc b/ppapi/proxy/ppb_instance_proxy.cc |
index e3948f06aafff92afb3f569434592a47a7954a01..20b93649ece0cfca735cb2dde1b9d62947a582c5 100644 |
--- a/ppapi/proxy/ppb_instance_proxy.cc |
+++ b/ppapi/proxy/ppb_instance_proxy.cc |
@@ -26,6 +26,7 @@ |
#include "ppapi/proxy/flash_resource.h" |
#include "ppapi/proxy/gamepad_resource.h" |
#include "ppapi/proxy/host_dispatcher.h" |
+#include "ppapi/proxy/network_proxy_resource.h" |
#include "ppapi/proxy/pdf_resource.h" |
#include "ppapi/proxy/plugin_dispatcher.h" |
#include "ppapi/proxy/ppapi_messages.h" |
@@ -370,18 +371,21 @@ Resource* PPB_Instance_Proxy::GetSingletonResource(PP_Instance instance, |
case BROKER_SINGLETON_ID: |
new_singleton = new BrokerResource(connection, instance); |
break; |
+ case CRX_FILESYSTEM_SINGLETON_ID: |
+ new_singleton = new ExtCrxFileSystemPrivateResource(connection, instance); |
+ break; |
case EXTENSIONS_COMMON_SINGLETON_ID: |
new_singleton = new ExtensionsCommonResource(connection, instance); |
break; |
case GAMEPAD_SINGLETON_ID: |
new_singleton = new GamepadResource(connection, instance); |
break; |
+ case NETWORK_PROXY_SINGLETON_ID: |
+ new_singleton = new NetworkProxyResource(connection, instance); |
+ break; |
case TRUETYPE_FONT_SINGLETON_ID: |
new_singleton = new TrueTypeFontSingletonResource(connection, instance); |
break; |
- case CRX_FILESYSTEM_SINGLETON_ID: |
- new_singleton = new ExtCrxFileSystemPrivateResource(connection, instance); |
- break; |
// Flash/trusted resources aren't needed for NaCl. |
#if !defined(OS_NACL) && !defined(NACL_WIN64) |
case BROWSER_FONT_SINGLETON_ID: |