#include "third_party/blink/renderer/modules/geolocation/geolocation_watchers.h"
#include "third_party/blink/renderer/modules/geolocation/geo_notifier.h"
namespace blink {
void GeolocationWatchers::Trace(Visitor* visitor) const { … }
bool GeolocationWatchers::Add(int id, GeoNotifier* notifier) { … }
GeoNotifier* GeolocationWatchers::Find(int id) const { … }
void GeolocationWatchers::Remove(int id) { … }
void GeolocationWatchers::Remove(GeoNotifier* notifier) { … }
bool GeolocationWatchers::Contains(GeoNotifier* notifier) const { … }
void GeolocationWatchers::Clear() { … }
bool GeolocationWatchers::IsEmpty() const { … }
void GeolocationWatchers::Swap(GeolocationWatchers& other) { … }
void GeolocationWatchers::CopyNotifiersToVector(
HeapVector<Member<GeoNotifier>>& vector) const { … }
}