chromium/third_party/blink/renderer/modules/geolocation/geolocation_watchers.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {}

}  // namespace blink