// Copyright 2015 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_QUIC_NETWORK_CONNECTION_H_ #define NET_QUIC_NETWORK_CONNECTION_H_ #include "net/base/net_export.h" #include "net/base/network_change_notifier.h" namespace net { // This class stores information about the current network type and // provides a textual description of it. class NET_EXPORT NetworkConnection : public NetworkChangeNotifier::IPAddressObserver, public NetworkChangeNotifier::ConnectionTypeObserver { … }; } // namespace net #endif // NET_QUIC_NETWORK_CONNECTION_H_