// 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. #include "services/device/geolocation/wifi_data.h" #include <stddef.h> #include <stdint.h> #include <algorithm> #include <limits> #include "base/check.h" namespace device { WifiData::WifiData() = default; WifiData::WifiData(const WifiData& other) = default; WifiData& WifiData::operator=(const WifiData& other) = default; WifiData::~WifiData() = default; bool WifiData::DiffersSignificantly(const WifiData& other) const { … } } // namespace device