HomeSort by relevance Sort by last modified time
    Searched refs:GeoNotifier (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.h 96 class GeoNotifier : public GarbageCollectedFinalized<GeoNotifier> {
98 static GeoNotifier* create(Geolocation* geolocation, PassOwnPtr<PositionCallback> positionCallback, PassOwnPtr<PositionErrorCallback> positionErrorCallback, PositionOptions* options)
100 return new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options);
125 void timerFired(Timer<GeoNotifier>*);
128 GeoNotifier(Geolocation*, PassOwnPtr<PositionCallback>, PassOwnPtr<PositionErrorCallback>, PositionOptions*);
134 Timer<GeoNotifier> m_timer;
139 typedef HeapVector<Member<GeoNotifier> > GeoNotifierVector;
140 typedef HeapHashSet<Member<GeoNotifier> > GeoNotifierSet;
146 bool add(int id, GeoNotifier*);
    [all...]
Geolocation.cpp 79 Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassOwnPtr<PositionCallback> successCallback, PassOwnPtr<PositionErrorCallback> errorCallback, PositionOptions* options)
84 , m_timer(this, &Geolocation::GeoNotifier::timerFired)
94 void Geolocation::GeoNotifier::trace(Visitor* visitor)
101 void Geolocation::GeoNotifier::setFatalError(PositionError* error)
115 void Geolocation::GeoNotifier::setUseCachedPosition()
121 void Geolocation::GeoNotifier::runSuccessCallback(Geoposition* position)
131 void Geolocation::GeoNotifier::runErrorCallback(PositionError* error)
137 void Geolocation::GeoNotifier::startTimer()
142 void Geolocation::GeoNotifier::stopTimer(
    [all...]

Completed in 351 milliseconds