diff options
author | sanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-31 18:49:34 +0000 |
---|---|---|
committer | sanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-31 18:49:34 +0000 |
commit | abe2c035dd58c29f9c5f00807e502baa2cc462bc (patch) | |
tree | 45c383ddc14968e16e050938f73456e13a3fe980 /content/browser/geolocation/location_arbitrator.h | |
parent | 6cfef4d1548e36ecff926bdb148d9d497de4176c (diff) | |
download | chromium_src-abe2c035dd58c29f9c5f00807e502baa2cc462bc.zip chromium_src-abe2c035dd58c29f9c5f00807e502baa2cc462bc.tar.gz chromium_src-abe2c035dd58c29f9c5f00807e502baa2cc462bc.tar.bz2 |
Moved URLRequestContextGetter to net/ so it can be used by projects such as jingle.
BUG=None
TEST=Build.
Review URL: http://codereview.chromium.org/6778025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80033 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/geolocation/location_arbitrator.h')
-rw-r--r-- | content/browser/geolocation/location_arbitrator.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/content/browser/geolocation/location_arbitrator.h b/content/browser/geolocation/location_arbitrator.h index 3409f81e..264ca1a 100644 --- a/content/browser/geolocation/location_arbitrator.h +++ b/content/browser/geolocation/location_arbitrator.h @@ -9,18 +9,22 @@ #include "base/memory/scoped_vector.h" #include "base/string16.h" #include "base/time.h" -#include "chrome/common/net/url_request_context_getter.h" #include "content/browser/geolocation/access_token_store.h" #include "content/browser/geolocation/location_provider.h" #include "content/browser/geolocation/geolocation_observer.h" #include "content/common/geoposition.h" #include "googleurl/src/gurl.h" +#include "net/url_request/url_request_context_getter.h" class AccessTokenStore; class GeolocationArbitratorDependencyFactory; class GURL; class LocationProviderBase; + +namespace net { class URLRequestContextGetter; +} + struct Geoposition; // This class is responsible for handling updates from multiple underlying @@ -82,7 +86,7 @@ class GeolocationArbitrator : public LocationProviderBase::ListenerInterface { scoped_refptr<GeolocationArbitratorDependencyFactory> dependency_factory_; scoped_refptr<AccessTokenStore> access_token_store_; - scoped_refptr<URLRequestContextGetter> context_getter_; + scoped_refptr<net::URLRequestContextGetter> context_getter_; GetTimeNow get_time_now_; GeolocationObserver* observer_; ScopedVector<LocationProviderBase> providers_; |