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

/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocation.h107 typedef HeapVector<Member<GeoNotifier> > GeoNotifierVector; typedef in class:blink::FINAL
112 void sendError(GeoNotifierVector&, PositionError*);
113 void sendPosition(GeoNotifierVector&, Geoposition*);
117 static void extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached);
120 static void copyToSet(const GeoNotifierVector& src, GeoNotifierSet& dest);
122 static void stopTimer(GeoNotifierVector&);
128 void cancelRequests(GeoNotifierVector&);
H A DGeolocation.cpp308 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error)
310 GeoNotifierVector::const_iterator end = notifiers.end();
311 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
315 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position)
317 GeoNotifierVector::const_iterator end = notifiers.end();
318 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
322 void Geolocation::stopTimer(GeoNotifierVector& notifiers)
324 GeoNotifierVector::const_iterator end = notifiers.end();
325 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it)
331 GeoNotifierVector cop
[all...]

Completed in 75 milliseconds