summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authornileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-18 19:14:04 +0000
committernileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-18 19:14:04 +0000
commitf8c2b83ece61683debe6a01f8dd5555ba5443855 (patch)
tree0f74618e7b615319bd03413510502c21bff99b16 /ppapi
parent23560a821c6e0a9d8051a3ceec7de4e31910cbaf (diff)
downloadchromium_src-f8c2b83ece61683debe6a01f8dd5555ba5443855.zip
chromium_src-f8c2b83ece61683debe6a01f8dd5555ba5443855.tar.gz
chromium_src-f8c2b83ece61683debe6a01f8dd5555ba5443855.tar.bz2
Remove unused member variable.
Fixes one error in the clang build on Android. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10779041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147289 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/proxy/ppb_url_loader_proxy.cc3
-rw-r--r--ppapi/proxy/ppb_url_loader_proxy.h4
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