diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 07:12:14 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 07:12:14 +0000 |
commit | d3ec669b62912a5464e1c89fde7218d06e4a5522 (patch) | |
tree | 3ba696064595f3a1c8fe6e0ede9735b8d5ba34b2 /content/browser/geolocation/network_location_request.h | |
parent | 3ea8fe2d0851618159039209591354085a137b11 (diff) | |
download | chromium_src-d3ec669b62912a5464e1c89fde7218d06e4a5522.zip chromium_src-d3ec669b62912a5464e1c89fde7218d06e4a5522.tar.gz chromium_src-d3ec669b62912a5464e1c89fde7218d06e4a5522.tar.bz2 |
Change most content::URLFetcher references to net::URLFetcher
The only remaining use of content::URLFetcher is content::URLFetcher::Create.
Make content::URLFetcher not inherit from net::URLFetcher.
Also make code that directly create URLFetcherImpl instead call content::URLFetcher::Create.
BUG=118220
TEST=
TBR=mnissler@chromium.org,sky@chromium.org,mal@chromium.org,sail@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10412050
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138443 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/network_location_request.h')
-rw-r--r-- | content/browser/geolocation/network_location_request.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/geolocation/network_location_request.h b/content/browser/geolocation/network_location_request.h index b13c626..1f12285 100644 --- a/content/browser/geolocation/network_location_request.h +++ b/content/browser/geolocation/network_location_request.h @@ -16,10 +16,10 @@ namespace content { struct Geoposition; -class URLFetcher; } namespace net { +class URLFetcher; class URLRequestContextGetter; } @@ -68,7 +68,7 @@ class NetworkLocationRequest : private net::URLFetcherDelegate { scoped_refptr<net::URLRequestContextGetter> url_context_; ListenerInterface* listener_; const GURL url_; - scoped_ptr<content::URLFetcher> url_fetcher_; + scoped_ptr<net::URLFetcher> url_fetcher_; // Keep a copy of the data sent in the request, so we can refer back to it // when the response arrives. |