Index: ppapi/proxy/ppb_instance_proxy.cc |
diff --git a/ppapi/proxy/ppb_instance_proxy.cc b/ppapi/proxy/ppb_instance_proxy.cc |
index 324f342f385a36618781af8896f57965df46a1f8..e4be33fc828abd9cee92f1b6ad9293f2d00613f8 100644 |
--- a/ppapi/proxy/ppb_instance_proxy.cc |
+++ b/ppapi/proxy/ppb_instance_proxy.cc |
@@ -19,6 +19,7 @@ |
#include "ppapi/proxy/content_decryptor_private_serializer.h" |
#include "ppapi/proxy/enter_proxy.h" |
#include "ppapi/proxy/extensions_common_resource.h" |
+#include "ppapi/proxy/file_mapping_resource.h" |
#include "ppapi/proxy/flash_clipboard_resource.h" |
#include "ppapi/proxy/flash_file_resource.h" |
#include "ppapi/proxy/flash_fullscreen_resource.h" |
@@ -362,6 +363,9 @@ Resource* PPB_Instance_Proxy::GetSingletonResource(PP_Instance instance, |
case EXTENSIONS_COMMON_SINGLETON_ID: |
new_singleton = new ExtensionsCommonResource(connection, instance); |
break; |
+ case FILE_MAPPING_SINGLETON_ID: |
+ new_singleton = new FileMappingResource(connection, instance); |
+ break; |
case GAMEPAD_SINGLETON_ID: |
new_singleton = new GamepadResource(connection, instance); |
break; |