| Index: net/quic/congestion_control/tcp_loss_algorithm_test.cc
|
| diff --git a/net/quic/congestion_control/tcp_loss_algorithm_test.cc b/net/quic/congestion_control/tcp_loss_algorithm_test.cc
|
| index 9a42d364a22ba94e6a6bdb1f33b7c4a0bcd8707f..bc9db2a0bd8578225190a3bdc446501e2e2f9273 100644
|
| --- a/net/quic/congestion_control/tcp_loss_algorithm_test.cc
|
| +++ b/net/quic/congestion_control/tcp_loss_algorithm_test.cc
|
| @@ -2,20 +2,18 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "net/quic/congestion_control/tcp_loss_algorithm.h"
|
| -
|
| #include <algorithm>
|
|
|
| #include "base/logging.h"
|
| #include "base/stl_util.h"
|
| #include "net/quic/congestion_control/rtt_stats.h"
|
| +#include "net/quic/congestion_control/tcp_loss_algorithm.h"
|
| #include "net/quic/quic_unacked_packet_map.h"
|
| #include "net/quic/test_tools/mock_clock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace net {
|
| namespace test {
|
| -namespace {
|
|
|
| class TcpLossAlgorithmTest : public ::testing::Test {
|
| protected:
|
| @@ -177,6 +175,5 @@ TEST_F(TcpLossAlgorithmTest, DontEarlyRetransmitNeuteredPacket) {
|
| EXPECT_EQ(QuicTime::Zero(), loss_algorithm_.GetLossTimeout());
|
| }
|
|
|
| -} // namespace
|
| } // namespace test
|
| } // namespace net
|
|
|