Chromium Code Reviews| Index: net/proxy/proxy_script_fetcher_impl.h |
| diff --git a/net/proxy/proxy_script_fetcher_impl.h b/net/proxy/proxy_script_fetcher_impl.h |
| index bd141f3b11d1333c2414c5c2f641bff9f899cfca..2dc03350fefb52ecbfeb23583a38bd103b3aad9c 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); |
|
wtc
2011/01/15 17:54:23
Undo the changes to this file, because it's alread
|
| 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 }; |