summaryrefslogtreecommitdiffstats
path: root/WebCore/page/GeolocationController.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/GeolocationController.h')
-rw-r--r--WebCore/page/GeolocationController.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/page/GeolocationController.h b/WebCore/page/GeolocationController.h
index 57f6e32..2d8106d 100644
--- a/WebCore/page/GeolocationController.h
+++ b/WebCore/page/GeolocationController.h
@@ -35,14 +35,14 @@
namespace WebCore {
-class GeolocationControllerClient;
+class GeolocationClient;
class GeolocationError;
class GeolocationPosition;
class Page;
class GeolocationController : public Noncopyable {
public:
- GeolocationController(Page*, GeolocationControllerClient*);
+ GeolocationController(Page*, GeolocationClient*);
~GeolocationController();
void addObserver(Geolocation*, bool enableHighAccuracy);
@@ -55,7 +55,7 @@ public:
private:
Page* m_page;
- GeolocationControllerClient* m_client;
+ GeolocationClient* m_client;
RefPtr<GeolocationPosition> m_lastPosition;
typedef HashSet<RefPtr<Geolocation> > ObserversSet;