Searched refs:GeoNotifier (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/page/
H A DGeolocation.h92 class GeoNotifier : public RefCounted<GeoNotifier> { class in class:WebCore::Geolocation
94 static PassRefPtr<GeoNotifier> create(Geolocation* geolocation, PassRefPtr<PositionCallback> positionCallback, PassRefPtr<PositionErrorCallback> positionErrorCallback, PassRefPtr<PositionOptions> options) { return adoptRef(new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options)); }
101 void timerFired(Timer<GeoNotifier>*);
107 Timer<GeoNotifier> m_timer;
112 GeoNotifier(Geolocation*, PassRefPtr<PositionCallback>, PassRefPtr<PositionErrorCallback>, PassRefPtr<PositionOptions>);
115 typedef Vector<RefPtr<GeoNotifier> > GeoNotifierVector;
116 typedef HashSet<RefPtr<GeoNotifier> > GeoNotifierSet;
120 void set(int id, PassRefPtr<GeoNotifier>);
[all...]
H A DGeolocation.cpp86 Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassRefPtr<PositionCallback> successCallback, PassRefPtr<PositionErrorCallback> errorCallback, PassRefPtr<PositionOptions> options) function in class:WebCore::Geolocation::GeoNotifier
91 , m_timer(this, &Geolocation::GeoNotifier::timerFired)
101 void Geolocation::GeoNotifier::setFatalError(PassRefPtr<PositionError> error)
115 void Geolocation::GeoNotifier::setUseCachedPosition()
121 bool Geolocation::GeoNotifier::hasZeroTimeout() const
126 void Geolocation::GeoNotifier::runSuccessCallback(Geoposition* position)
131 void Geolocation::GeoNotifier::startTimerIfNeeded()
137 void Geolocation::GeoNotifier::timerFired(Timer<GeoNotifier>*)
[all...]

Completed in 128 milliseconds