| Index: ppapi/proxy/ppb_instance_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_instance_proxy.cc b/ppapi/proxy/ppb_instance_proxy.cc
|
| index e8d07abadae6ae9065ed3c9d839061a61187525a..4241414c81e17b8d6184cb96dbf008fbf8d480d4 100644
|
| --- a/ppapi/proxy/ppb_instance_proxy.cc
|
| +++ b/ppapi/proxy/ppb_instance_proxy.cc
|
| @@ -14,6 +14,7 @@
|
| #include "ppapi/c/ppb_messaging.h"
|
| #include "ppapi/c/ppb_mouse_lock.h"
|
| #include "ppapi/c/private/pp_content_decryptor.h"
|
| +#include "ppapi/proxy/broker_resource.h"
|
| #include "ppapi/proxy/content_decryptor_private_serializer.h"
|
| #include "ppapi/proxy/enter_proxy.h"
|
| #include "ppapi/proxy/flash_clipboard_resource.h"
|
| @@ -374,6 +375,9 @@ Resource* PPB_Instance_Proxy::GetSingletonResource(PP_Instance instance,
|
| Connection connection(PluginGlobals::Get()->GetBrowserSender(), dispatcher());
|
|
|
| switch (id) {
|
| + case BROKER_SINGLETON_ID:
|
| + new_singleton = new BrokerResource(connection, instance);
|
| + break;
|
| case GAMEPAD_SINGLETON_ID:
|
| new_singleton = new GamepadResource(connection, instance);
|
| break;
|
|
|