| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/tools/quic/test_tools/quic_test_utils.h" | 5 #include "net/tools/quic/test_tools/quic_test_utils.h" |
| 6 | 6 |
| 7 #include "net/quic/quic_connection.h" | 7 #include "net/quic/quic_connection.h" |
| 8 #include "net/quic/test_tools/quic_connection_peer.h" | 8 #include "net/quic/test_tools/quic_connection_peer.h" |
| 9 #include "net/quic/test_tools/quic_test_utils.h" | 9 #include "net/quic/test_tools/quic_test_utils.h" |
| 10 #include "net/tools/quic/quic_epoll_connection_helper.h" | 10 #include "net/tools/quic/quic_epoll_connection_helper.h" |
| 11 | 11 |
| 12 using base::StringPiece; | 12 using base::StringPiece; |
| 13 using net::test::MakeAckFrame; | 13 using net::test::MakeAckFrame; |
| 14 using net::test::MockHelper; | 14 using net::test::MockHelper; |
| 15 using net::test::QuicConnectionPeer; | 15 using net::test::QuicConnectionPeer; |
| 16 | 16 |
| 17 namespace net { | 17 namespace net { |
| 18 namespace tools { | 18 namespace tools { |
| 19 namespace test { | 19 namespace test { |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 class NiceMockPacketWriterFactory | 22 class NiceMockPacketWriterFactory |
| 23 : public QuicConnection::PacketWriterFactory { | 23 : public QuicConnection::PacketWriterFactory { |
| 24 public: | 24 public: |
| 25 NiceMockPacketWriterFactory() {} | 25 NiceMockPacketWriterFactory() {} |
| 26 virtual ~NiceMockPacketWriterFactory() {} | 26 virtual ~NiceMockPacketWriterFactory() {} |
| 27 | 27 |
| 28 virtual QuicPacketWriter* Create( | 28 virtual QuicPacketWriter* Create( |
| 29 QuicConnection* /*connection*/) const OVERRIDE { | 29 QuicConnection* /*connection*/) const override { |
| 30 return new testing::NiceMock<MockPacketWriter>(); | 30 return new testing::NiceMock<MockPacketWriter>(); |
| 31 } | 31 } |
| 32 | 32 |
| 33 private: | 33 private: |
| 34 DISALLOW_COPY_AND_ASSIGN(NiceMockPacketWriterFactory); | 34 DISALLOW_COPY_AND_ASSIGN(NiceMockPacketWriterFactory); |
| 35 }; | 35 }; |
| 36 } // namespace | 36 } // namespace |
| 37 | 37 |
| 38 MockConnection::MockConnection(bool is_server) | 38 MockConnection::MockConnection(bool is_server) |
| 39 : QuicConnection(kTestConnectionId, | 39 : QuicConnection(kTestConnectionId, |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 factory_->current_writer_ = this; | 174 factory_->current_writer_ = this; |
| 175 return QuicPerConnectionPacketWriter::WritePacket(buffer, | 175 return QuicPerConnectionPacketWriter::WritePacket(buffer, |
| 176 buf_len, | 176 buf_len, |
| 177 self_address, | 177 self_address, |
| 178 peer_address); | 178 peer_address); |
| 179 } | 179 } |
| 180 | 180 |
| 181 } // namespace test | 181 } // namespace test |
| 182 } // namespace tools | 182 } // namespace tools |
| 183 } // namespace net | 183 } // namespace net |
| OLD | NEW |