GeoNotifier        80 Source/modules/geolocation/Geolocation.cpp Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassOwnPtr<PositionCallback> successCallback, PassOwnPtr<PositionErrorCallback> errorCallback, PassRefPtrWillBeRawPtr<PositionOptions> options)
GeoNotifier        85 Source/modules/geolocation/Geolocation.cpp     , m_timer(this, &Geolocation::GeoNotifier::timerFired)
GeoNotifier        95 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::trace(Visitor* visitor)
GeoNotifier       102 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::setFatalError(PassRefPtrWillBeRawPtr<PositionError> error)
GeoNotifier       116 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::setUseCachedPosition()
GeoNotifier       122 Source/modules/geolocation/Geolocation.cpp bool Geolocation::GeoNotifier::hasZeroTimeout() const
GeoNotifier       127 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::runSuccessCallback(Geoposition* position)
GeoNotifier       137 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::runErrorCallback(PositionError* error)
GeoNotifier       143 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::startTimerIfNeeded()
GeoNotifier       149 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::stopTimer()
GeoNotifier       154 Source/modules/geolocation/Geolocation.cpp void Geolocation::GeoNotifier::timerFired(Timer<GeoNotifier>*)
GeoNotifier       160 Source/modules/geolocation/Geolocation.cpp     RefPtrWillBeRawPtr<GeoNotifier> protect(this);
GeoNotifier       192 Source/modules/geolocation/Geolocation.cpp bool Geolocation::Watchers::add(int id, PassRefPtrWillBeRawPtr<GeoNotifier> prpNotifier)
GeoNotifier       195 Source/modules/geolocation/Geolocation.cpp     RefPtrWillBeRawPtr<GeoNotifier> notifier = prpNotifier;
GeoNotifier       203 Source/modules/geolocation/Geolocation.cpp Geolocation::GeoNotifier* Geolocation::Watchers::find(int id)
GeoNotifier       222 Source/modules/geolocation/Geolocation.cpp void Geolocation::Watchers::remove(GeoNotifier* notifier)
GeoNotifier       231 Source/modules/geolocation/Geolocation.cpp bool Geolocation::Watchers::contains(GeoNotifier* notifier) const
GeoNotifier       323 Source/modules/geolocation/Geolocation.cpp     RefPtrWillBeRawPtr<GeoNotifier> notifier = GeoNotifier::create(this, successCallback, errorCallback, options);
GeoNotifier       334 Source/modules/geolocation/Geolocation.cpp     RefPtrWillBeRawPtr<GeoNotifier> notifier = GeoNotifier::create(this, successCallback, errorCallback, options);
GeoNotifier       345 Source/modules/geolocation/Geolocation.cpp void Geolocation::startRequest(GeoNotifier *notifier)
GeoNotifier       365 Source/modules/geolocation/Geolocation.cpp void Geolocation::fatalErrorOccurred(Geolocation::GeoNotifier* notifier)
GeoNotifier       375 Source/modules/geolocation/Geolocation.cpp void Geolocation::requestUsesCachedPosition(GeoNotifier* notifier)
GeoNotifier       403 Source/modules/geolocation/Geolocation.cpp         GeoNotifier* notifier = iter->get();
GeoNotifier       424 Source/modules/geolocation/Geolocation.cpp void Geolocation::requestTimedOut(GeoNotifier* notifier)
GeoNotifier       451 Source/modules/geolocation/Geolocation.cpp     if (GeoNotifier* notifier = m_watchers.find(watchID))
GeoNotifier       556 Source/modules/geolocation/Geolocation.cpp         GeoNotifier* notifier = it->get();
GeoNotifier       570 Source/modules/geolocation/Geolocation.cpp          GeoNotifier* notifier = it->get();
GeoNotifier       670 Source/modules/geolocation/Geolocation.cpp bool Geolocation::startUpdating(GeoNotifier* notifier)
GeoNotifier       695 Source/modules/geolocation/Geolocation.cpp         GeoNotifier* notifier = iter->get();
GeoNotifier        97 Source/modules/geolocation/Geolocation.h     class GeoNotifier : public RefCountedWillBeGarbageCollectedFinalized<GeoNotifier> {
GeoNotifier        99 Source/modules/geolocation/Geolocation.h         static PassRefPtrWillBeRawPtr<GeoNotifier> create(Geolocation* geolocation, PassOwnPtr<PositionCallback> positionCallback, PassOwnPtr<PositionErrorCallback> positionErrorCallback, PassRefPtrWillBeRawPtr<PositionOptions> options)
GeoNotifier       101 Source/modules/geolocation/Geolocation.h             return adoptRefWillBeNoop(new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options));
GeoNotifier       128 Source/modules/geolocation/Geolocation.h         void timerFired(Timer<GeoNotifier>*);
GeoNotifier       133 Source/modules/geolocation/Geolocation.h         GeoNotifier(Geolocation*, PassOwnPtr<PositionCallback>, PassOwnPtr<PositionErrorCallback>, PassRefPtrWillBeRawPtr<PositionOptions>);
GeoNotifier       139 Source/modules/geolocation/Geolocation.h         Timer<GeoNotifier> m_timer;
GeoNotifier       144 Source/modules/geolocation/Geolocation.h     typedef WillBeHeapVector<RefPtrWillBeMember<GeoNotifier> > GeoNotifierVector;
GeoNotifier       145 Source/modules/geolocation/Geolocation.h     typedef WillBeHeapHashSet<RefPtrWillBeMember<GeoNotifier> > GeoNotifierSet;
GeoNotifier       150 Source/modules/geolocation/Geolocation.h         bool add(int id, PassRefPtrWillBeRawPtr<GeoNotifier>);
GeoNotifier       151 Source/modules/geolocation/Geolocation.h         GeoNotifier* find(int id);
GeoNotifier       153 Source/modules/geolocation/Geolocation.h         void remove(GeoNotifier*);
GeoNotifier       154 Source/modules/geolocation/Geolocation.h         bool contains(GeoNotifier*) const;
GeoNotifier       159 Source/modules/geolocation/Geolocation.h         typedef WillBeHeapHashMap<int, RefPtrWillBeMember<GeoNotifier> > IdToNotifierMap;
GeoNotifier       202 Source/modules/geolocation/Geolocation.h     bool startUpdating(GeoNotifier*);
GeoNotifier       214 Source/modules/geolocation/Geolocation.h     void startRequest(GeoNotifier*);
GeoNotifier       217 Source/modules/geolocation/Geolocation.h     void fatalErrorOccurred(GeoNotifier*);
GeoNotifier       220 Source/modules/geolocation/Geolocation.h     void requestTimedOut(GeoNotifier*);
GeoNotifier       225 Source/modules/geolocation/Geolocation.h     void requestUsesCachedPosition(GeoNotifier*);