| Index: device/geolocation/wifi_data.h
|
| diff --git a/device/geolocation/wifi_data.h b/device/geolocation/wifi_data.h
|
| deleted file mode 100644
|
| index 8b2efe5bc9c6574a1e54fd9fec8a940f94cca3c5..0000000000000000000000000000000000000000
|
| --- a/device/geolocation/wifi_data.h
|
| +++ /dev/null
|
| @@ -1,54 +0,0 @@
|
| -// Copyright 2013 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef DEVICE_GEOLOCATION_WIFI_DATA_H_
|
| -#define DEVICE_GEOLOCATION_WIFI_DATA_H_
|
| -
|
| -#include <set>
|
| -
|
| -#include "base/strings/string16.h"
|
| -#include "device/geolocation/geolocation_export.h"
|
| -
|
| -namespace device {
|
| -
|
| -// Wifi data relating to a single access point.
|
| -struct DEVICE_GEOLOCATION_EXPORT AccessPointData {
|
| - AccessPointData();
|
| - ~AccessPointData();
|
| -
|
| - // MAC address, formatted as per MacAddressAsString16.
|
| - base::string16 mac_address;
|
| - int radio_signal_strength; // Measured in dBm
|
| - int channel;
|
| - int signal_to_noise; // Ratio in dB
|
| - base::string16 ssid; // Network identifier
|
| -};
|
| -
|
| -// This is to allow AccessPointData to be used in std::set. We order
|
| -// lexicographically by MAC address.
|
| -struct AccessPointDataLess {
|
| - bool operator()(const AccessPointData& data1,
|
| - const AccessPointData& data2) const {
|
| - return data1.mac_address < data2.mac_address;
|
| - }
|
| -};
|
| -
|
| -// All data for wifi.
|
| -struct DEVICE_GEOLOCATION_EXPORT WifiData {
|
| - WifiData();
|
| - WifiData(const WifiData& other);
|
| - ~WifiData();
|
| -
|
| - // Determines whether a new set of WiFi data differs significantly from this.
|
| - bool DiffersSignificantly(const WifiData& other) const;
|
| -
|
| - // Store access points as a set, sorted by MAC address. This allows quick
|
| - // comparison of sets for detecting changes and for caching.
|
| - typedef std::set<AccessPointData, AccessPointDataLess> AccessPointDataSet;
|
| - AccessPointDataSet access_point_data;
|
| -};
|
| -
|
| -} // namespace device
|
| -
|
| -#endif // DEVICE_GEOLOCATION_WIFI_DATA_H_
|
|
|