Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1049)

Unified Diff: content/browser/geolocation/network_location_provider.h

Issue 8997008: Move AccessTokenStore to Content API, now that it is a pure-virtual class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head (pure merge). Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/geolocation/network_location_provider.h
diff --git a/content/browser/geolocation/network_location_provider.h b/content/browser/geolocation/network_location_provider.h
index 8f6e3605acfdcb1b25874d9eceb1b8e1463d2bb3..787adb6c9d91b23b93a2f90ce0be0a06498a8b66 100644
--- a/content/browser/geolocation/network_location_provider.h
+++ b/content/browser/geolocation/network_location_provider.h
@@ -21,6 +21,10 @@
#include "content/common/content_export.h"
#include "content/common/geoposition.h"
+namespace content {
+class AccessTokenStore;
+}
+
class NetworkLocationProvider
: public LocationProviderBase,
public RadioDataProvider::ListenerInterface,
@@ -64,7 +68,7 @@ class NetworkLocationProvider
CacheAgeList cache_age_list_; // Oldest first.
};
- NetworkLocationProvider(AccessTokenStore* access_token_store,
+ NetworkLocationProvider(content::AccessTokenStore* access_token_store,
net::URLRequestContextGetter* context,
const GURL& url,
const string16& access_token);
@@ -97,7 +101,7 @@ class NetworkLocationProvider
const RadioData& radio_data,
const WifiData& wifi_data) OVERRIDE;
- scoped_refptr<AccessTokenStore> access_token_store_;
+ scoped_refptr<content::AccessTokenStore> access_token_store_;
// The device data providers, acquired via global factories.
RadioDataProvider* radio_data_provider_;
« no previous file with comments | « content/browser/geolocation/location_provider.h ('k') | content/browser/geolocation/network_location_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698