// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/quic/network_connection.h" #include "base/logging.h" #include "net/base/network_interfaces.h" namespace net { NetworkConnection::NetworkConnection() { … } NetworkConnection::~NetworkConnection() { … } void NetworkConnection::OnIPAddressChanged() { … } void NetworkConnection::OnConnectionTypeChanged( NetworkChangeNotifier::ConnectionType type) { … } } // namespace net