Searched defs:GeoNotifier (Results 1 - 2 of 2) sorted by last modified time

/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeoNotifier.cpp6 #include "modules/geolocation/GeoNotifier.h"
14 GeoNotifier::GeoNotifier(Geolocation* geolocation, PositionCallback* successCallback, PositionErrorCallback* errorCallback, PositionOptions* options) function in class:blink::GeoNotifier
20 , m_timer(this, &GeoNotifier::timerFired)
28 void GeoNotifier::trace(Visitor* visitor)
37 void GeoNotifier::setFatalError(PositionError* error)
51 void GeoNotifier::setUseCachedPosition()
57 void GeoNotifier::runSuccessCallback(Geoposition* position)
62 void GeoNotifier::runErrorCallback(PositionError* error)
68 void GeoNotifier
[all...]
H A DGeoNotifier.h20 class GeoNotifier : public GarbageCollectedFinalized<GeoNotifier> { class in namespace:blink
22 static GeoNotifier* create(Geolocation* geolocation, PositionCallback* positionCallback, PositionErrorCallback* positionErrorCallback, PositionOptions* options)
24 return new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options);
49 void timerFired(Timer<GeoNotifier>*);
52 GeoNotifier(Geolocation*, PositionCallback*, PositionErrorCallback*, PositionOptions*);
58 Timer<GeoNotifier> m_timer;

Completed in 78 milliseconds