| Index: net/proxy/proxy_resolver_v8_tracing_wrapper.cc
|
| diff --git a/net/proxy/proxy_resolver_v8_tracing_wrapper.cc b/net/proxy/proxy_resolver_v8_tracing_wrapper.cc
|
| index 01dde66487203f2e344d78b01385eba2f13cc122..41193e8c0b534b0177c321c7b2964598c2bf46e7 100644
|
| --- a/net/proxy/proxy_resolver_v8_tracing_wrapper.cc
|
| +++ b/net/proxy/proxy_resolver_v8_tracing_wrapper.cc
|
| @@ -86,13 +86,9 @@ class ProxyResolverV8TracingWrapper : public ProxyResolver {
|
| int GetProxyForURL(const GURL& url,
|
| ProxyInfo* results,
|
| const CompletionCallback& callback,
|
| - RequestHandle* request,
|
| + scoped_ptr<Request>* request,
|
| const BoundNetLog& net_log) override;
|
|
|
| - void CancelRequest(RequestHandle request) override;
|
| -
|
| - LoadState GetLoadState(RequestHandle request) const override;
|
| -
|
| private:
|
| scoped_ptr<ProxyResolverV8Tracing> resolver_impl_;
|
| NetLog* net_log_;
|
| @@ -117,7 +113,7 @@ int ProxyResolverV8TracingWrapper::GetProxyForURL(
|
| const GURL& url,
|
| ProxyInfo* results,
|
| const CompletionCallback& callback,
|
| - RequestHandle* request,
|
| + scoped_ptr<Request>* request,
|
| const BoundNetLog& net_log) {
|
| resolver_impl_->GetProxyForURL(
|
| url, results, callback, request,
|
| @@ -126,15 +122,6 @@ int ProxyResolverV8TracingWrapper::GetProxyForURL(
|
| return ERR_IO_PENDING;
|
| }
|
|
|
| -void ProxyResolverV8TracingWrapper::CancelRequest(RequestHandle request) {
|
| - resolver_impl_->CancelRequest(request);
|
| -}
|
| -
|
| -LoadState ProxyResolverV8TracingWrapper::GetLoadState(
|
| - RequestHandle request) const {
|
| - return resolver_impl_->GetLoadState(request);
|
| -}
|
| -
|
| } // namespace
|
|
|
| ProxyResolverFactoryV8TracingWrapper::ProxyResolverFactoryV8TracingWrapper(
|
|
|