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

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

Issue 10316007: Make the Geoposition helper class public (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix forward-declaration of struct as class. Created 8 years, 8 months 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/location_provider.h
diff --git a/content/browser/geolocation/location_provider.h b/content/browser/geolocation/location_provider.h
index 1d845b6a8ebf221e912569a6618ea18134421cac..7f94098ac76e60ac914aefa163eb7ddc00922bfc 100644
--- a/content/browser/geolocation/location_provider.h
+++ b/content/browser/geolocation/location_provider.h
@@ -19,11 +19,11 @@
#include "base/threading/non_thread_safe.h"
#include "content/common/content_export.h"
-struct Geoposition;
class GURL;
namespace content {
class AccessTokenStore;
+struct Geoposition;
}
namespace net {
@@ -69,7 +69,7 @@ class CONTENT_EXPORT LocationProviderBase
virtual bool StartProvider(bool high_accuracy) = 0;
virtual void StopProvider() = 0;
// Gets the current best position estimate.
- virtual void GetPosition(Geoposition* position) = 0;
+ virtual void GetPosition(content::Geoposition* position) = 0;
// Provides a hint to the provider that new location data is needed as soon
// as possible. Default implementation does nothing.
virtual void UpdatePosition() {}
« no previous file with comments | « content/browser/geolocation/location_arbitrator_unittest.cc ('k') | content/browser/geolocation/mock_location_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698