// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_NQE_NETWORK_ID_H_ #define NET_NQE_NETWORK_ID_H_ #include <string> #include "net/base/net_export.h" #include "net/base/network_change_notifier.h" namespace net::nqe::internal { // NetworkID is used to uniquely identify a network. // For the purpose of network quality estimation and caching, a network is // uniquely identified by a combination of |type| and // |id|. This approach is unable to distinguish networks with // same name (e.g., different Wi-Fi networks with same SSID). // This is a protected member to expose it to tests. struct NET_EXPORT_PRIVATE NetworkID { … }; } // namespace net::nqe::internal #endif // NET_NQE_NETWORK_ID_H_