// Copyright 2013 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_WIFI_DATA_H_ #define SERVICES_DEVICE_GEOLOCATION_WIFI_DATA_H_ #include <set> #include <string> #include "services/device/public/mojom/geolocation_internals.mojom.h" namespace device { // This is to allow AccessPointData to be used in std::set. We order // lexicographically by MAC address. struct AccessPointDataLess { … }; // All data for wifi. struct WifiData { … }; } // namespace device #endif // SERVICES_DEVICE_GEOLOCATION_WIFI_DATA_H_