Searched refs:GeoNotifier (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Source/WebCore/page/ |
D | Geolocation.h | 92 class GeoNotifier : public RefCounted<GeoNotifier> { 94 …GeoNotifier> create(Geolocation* geolocation, PassRefPtr<PositionCallback> positionCallback, PassR… in create() 101 void timerFired(Timer<GeoNotifier>*); 107 Timer<GeoNotifier> m_timer; 112 …GeoNotifier(Geolocation*, PassRefPtr<PositionCallback>, PassRefPtr<PositionErrorCallback>, PassRef… 115 typedef Vector<RefPtr<GeoNotifier> > GeoNotifierVector; 116 typedef HashSet<RefPtr<GeoNotifier> > GeoNotifierSet; 120 void set(int id, PassRefPtr<GeoNotifier>); 122 void remove(GeoNotifier*); 123 bool contains(GeoNotifier*) const; [all …]
|
D | Geolocation.cpp | 86 Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassRefPtr<PositionCallback> succes… in GeoNotifier() function in WebCore::Geolocation::GeoNotifier 91 , m_timer(this, &Geolocation::GeoNotifier::timerFired) in GeoNotifier() 101 void Geolocation::GeoNotifier::setFatalError(PassRefPtr<PositionError> error) in setFatalError() 115 void Geolocation::GeoNotifier::setUseCachedPosition() in setUseCachedPosition() 121 bool Geolocation::GeoNotifier::hasZeroTimeout() const in hasZeroTimeout() 126 void Geolocation::GeoNotifier::runSuccessCallback(Geoposition* position) in runSuccessCallback() 131 void Geolocation::GeoNotifier::startTimerIfNeeded() in startTimerIfNeeded() 137 void Geolocation::GeoNotifier::timerFired(Timer<GeoNotifier>*) in timerFired() argument 143 RefPtr<GeoNotifier> protect(this); in timerFired() 170 void Geolocation::Watchers::set(int id, PassRefPtr<GeoNotifier> prpNotifier) in set() [all …]
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 8815 Hold a ref to the GeoNotifier while dispatching a callback. The code was 8824 (WebCore::Geolocation::GeoNotifier::timerFired): Protect notifier. 25125 In Geolocation::GeoNotifier::timerFired, a JS callback may be invoked if a 25126 fatal error was registered on this GeoNotifier or if this request has timed 25128 callback, the GeoNotifier object will be destroyed. We must therefore cache the 25136 …(WebCore::Geolocation::GeoNotifier::timerFired): Modified. Cache the m_geolocation member before i… 40426 …(WebCore::Geolocation::GeoNotifier::GeoNotifier): Modified. GeoNotifier takes Geolocation object a… 40427 …(WebCore::Geolocation::GeoNotifier::setFatalError): Added. Sets a fatal error for this notifier, c… 40428 …(WebCore::Geolocation::GeoNotifier::timerFired): Added. Used to call the error callback asynchrono… 40717 … The pair of maps allows us to look up a watcher either by its ID or by its GeoNotifier object. [all …]
|
D | ChangeLog-2009-06-16 | 21491 (WebCore::Geolocation::GeoNotifier::GeoNotifier): 21492 (WebCore::Geolocation::GeoNotifier::startTimer): 21501 (WebCore::Geolocation::GeoNotifier::create): 70228 (WebCore::Geolocation::GeoNotifier::timerFired): 73693 (WebCore::Geolocation::GeoNotifier::GeoNotifier): PositionOptions' timeout now unsigned 75084 (WebCore::Geolocation::GeoNotifier::GeoNotifier): 75085 (WebCore::Geolocation::GeoNotifier::timerFired): 75103 (WebCore::Geolocation::GeoNotifier::create): 75535 (WebCore::Geolocation::GeoNotifier::GeoNotifier): 75536 (WebCore::Geolocation::GeoNotifier::timerFired): [all …]
|
D | ChangeLog-2010-05-24 | 37119 (WebCore::Geolocation::GeoNotifier::setUseCachedPosition): Added. 37120 (WebCore::Geolocation::GeoNotifier::runSuccessCallback): Added. 37121 …(WebCore::Geolocation::GeoNotifier::timerFired): Modified. Added logic to handle using a cached po…
|
D | ChangeLog-2010-12-06 | 78088 This requires a change to allow multiple calls to GeoNotifier::setFatalError(). 78097 (WebCore::Geolocation::GeoNotifier::setFatalError):
|