summaryrefslogtreecommitdiffstats
path: root/net/proxy/proxy_script_fetcher_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/proxy/proxy_script_fetcher_impl.h')
-rw-r--r--net/proxy/proxy_script_fetcher_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/proxy/proxy_script_fetcher_impl.h b/net/proxy/proxy_script_fetcher_impl.h
index bd141f3..2dc0335 100644
--- a/net/proxy/proxy_script_fetcher_impl.h
+++ b/net/proxy/proxy_script_fetcher_impl.h
@@ -33,7 +33,7 @@ class ProxyScriptFetcherImpl : public ProxyScriptFetcher,
// Note that while a request is in progress, we will be holding a reference
// to |url_request_context|. Be careful not to create cycles between the
// fetcher and the context; you can break such cycles by calling Cancel().
- explicit ProxyScriptFetcherImpl(URLRequestContext* url_request_context);
+ explicit ProxyScriptFetcherImpl(net::URLRequestContext* url_request_context);
virtual ~ProxyScriptFetcherImpl();
@@ -42,7 +42,7 @@ class ProxyScriptFetcherImpl : public ProxyScriptFetcher,
virtual int Fetch(const GURL& url, string16* text,
CompletionCallback* callback);
virtual void Cancel();
- virtual URLRequestContext* GetRequestContext();
+ virtual net::URLRequestContext* GetRequestContext();
// net::URLRequest::Delegate methods:
virtual void OnAuthRequired(net::URLRequest* request,
@@ -80,7 +80,7 @@ class ProxyScriptFetcherImpl : public ProxyScriptFetcher,
ScopedRunnableMethodFactory<ProxyScriptFetcherImpl> task_factory_;
// The context used for making network requests.
- URLRequestContext* url_request_context_;
+ net::URLRequestContext* url_request_context_;
// Buffer that net::URLRequest writes into.
enum { kBufSize = 4096 };