Searched defs:Geolocation (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocation.h49 class Geolocation : public ScriptWrappable, public RefCounted<Geolocation>, public ActiveDOMObject class in namespace:WebCore
52 static PassRefPtr<Geolocation> create(ScriptExecutionContext*);
53 ~Geolocation();
74 explicit Geolocation(ScriptExecutionContext*);
80 static PassRefPtr<GeoNotifier> create(Geolocation* geolocation, PassRefPtr<PositionCallback> positionCallback, PassRefPtr<PositionErrorCallback> positionErrorCallback, PassRefPtr<PositionOptions> options) { return adoptRef(new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options)); }
97 GeoNotifier(Geolocation*, PassRefPtr<PositionCallback>, PassRefPtr<PositionErrorCallback>, PassRefPtr<PositionOptions>);
99 RefPtr<Geolocation> m_geolocation;
H A DGeolocation.cpp29 #include "modules/geolocation/Geolocation.h"
45 static const char permissionDeniedErrorMessage[] = "User denied Geolocation";
46 static const char failedToStartServiceErrorMessage[] = "Failed to start Geolocation service";
47 static const char framelessDocumentErrorMessage[] = "Geolocation cannot be used in frameless documents";
75 Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassRefPtr<PositionCallback> successCallback, PassRefPtr<PositionErrorCallback> errorCallback, PassRefPtr<PositionOptions> options)
80 , m_timer(this, &Geolocation::GeoNotifier::timerFired)
90 void Geolocation::GeoNotifier::setFatalError(PassRefPtr<PositionError> error)
104 void Geolocation::GeoNotifier::setUseCachedPosition()
110 bool Geolocation
241 Geolocation::Geolocation(ScriptExecutionContext* context) function in class:WebCore::Geolocation
[all...]

Completed in 91 milliseconds