chromium/services/device/geolocation/position_cache.h

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

#ifndef SERVICES_DEVICE_GEOLOCATION_POSITION_CACHE_H_
#define SERVICES_DEVICE_GEOLOCATION_POSITION_CACHE_H_

#include <cstddef>

namespace device {
namespace mojom {
class Geoposition;
class GeopositionResult;
class PositionCacheDiagnostics;
}  // namespace mojom

struct WifiData;

// Cache of recently resolved locations, keyed by the set of unique WiFi APs
// used in the network query.
class PositionCache {};

}  // namespace device

#endif  // SERVICES_DEVICE_GEOLOCATION_POSITION_CACHE_H_