diff options
-rw-r--r-- | ppapi/proxy/ppb_url_loader_proxy.cc | 3 | ||||
-rw-r--r-- | ppapi/proxy/ppb_url_loader_proxy.h | 4 |
2 files changed, 1 insertions, 6 deletions
diff --git a/ppapi/proxy/ppb_url_loader_proxy.cc b/ppapi/proxy/ppb_url_loader_proxy.cc index bdeff84..f70da3f 100644 --- a/ppapi/proxy/ppb_url_loader_proxy.cc +++ b/ppapi/proxy/ppb_url_loader_proxy.cc @@ -359,8 +359,7 @@ struct PPB_URLLoader_Proxy::ReadCallbackInfo { PPB_URLLoader_Proxy::PPB_URLLoader_Proxy(Dispatcher* dispatcher) : InterfaceProxy(dispatcher), - callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)), - host_urlloader_trusted_interface_(NULL) { + callback_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) { } PPB_URLLoader_Proxy::~PPB_URLLoader_Proxy() { diff --git a/ppapi/proxy/ppb_url_loader_proxy.h b/ppapi/proxy/ppb_url_loader_proxy.h index 5fd924d..801f25b 100644 --- a/ppapi/proxy/ppb_url_loader_proxy.h +++ b/ppapi/proxy/ppb_url_loader_proxy.h @@ -87,10 +87,6 @@ class PPB_URLLoader_Proxy : public InterfaceProxy { void OnCallback(int32_t result, const HostResource& resource); ProxyCompletionCallbackFactory<PPB_URLLoader_Proxy> callback_factory_; - - // Valid only in the host, this lazily-initialized pointer indicates the - // URLLoaderTrusted interface. - const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_; }; } // namespace proxy |