| Index: ppapi/proxy/ppb_instance_proxy.cc
|
| diff --git a/ppapi/proxy/ppb_instance_proxy.cc b/ppapi/proxy/ppb_instance_proxy.cc
|
| index 5d0e7ed3eb092b5d78bf9e6f98157fbf0bf6ec62..324f342f385a36618781af8896f57965df46a1f8 100644
|
| --- a/ppapi/proxy/ppb_instance_proxy.cc
|
| +++ b/ppapi/proxy/ppb_instance_proxy.cc
|
| @@ -61,10 +61,6 @@ const char kSerializationError[] = "Failed to convert a PostMessage "
|
| "argument from a PP_Var to a Javascript value. It may have cycles or be of "
|
| "an unsupported type.";
|
|
|
| -InterfaceProxy* CreateInstanceProxy(Dispatcher* dispatcher) {
|
| - return new PPB_Instance_Proxy(dispatcher);
|
| -}
|
| -
|
| void RequestSurroundingText(PP_Instance instance) {
|
| PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
|
| if (!dispatcher)
|
| @@ -96,18 +92,6 @@ PPB_Instance_Proxy::PPB_Instance_Proxy(Dispatcher* dispatcher)
|
| PPB_Instance_Proxy::~PPB_Instance_Proxy() {
|
| }
|
|
|
| -// static
|
| -const InterfaceProxy::Info* PPB_Instance_Proxy::GetInfoPrivate() {
|
| - static const Info info = {
|
| - ppapi::thunk::GetPPB_Instance_Private_0_1_Thunk(),
|
| - PPB_INSTANCE_PRIVATE_INTERFACE_0_1,
|
| - API_ID_NONE, // 1_0 is the canonical one.
|
| - false,
|
| - &CreateInstanceProxy,
|
| - };
|
| - return &info;
|
| -}
|
| -
|
| bool PPB_Instance_Proxy::OnMessageReceived(const IPC::Message& msg) {
|
| // Prevent the dispatcher from going away during a call to ExecuteScript.
|
| // This must happen OUTSIDE of ExecuteScript since the SerializedVars use
|
|
|