| Index: net/quic/test_tools/quic_test_utils.cc
|
| ===================================================================
|
| --- net/quic/test_tools/quic_test_utils.cc (revision 165858)
|
| +++ net/quic/test_tools/quic_test_utils.cc (working copy)
|
| @@ -3,7 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "net/quic/test_tools/quic_test_utils.h"
|
| -
|
| #include "net/quic/crypto/crypto_framer.h"
|
|
|
| using std::max;
|
| @@ -35,16 +34,6 @@
|
| frame_ = frame;
|
| }
|
|
|
| -MockHelper::MockHelper() {
|
| -}
|
| -
|
| -MockHelper::~MockHelper() {
|
| -}
|
| -
|
| -QuicClock* MockHelper::GetClock() {
|
| - return &clock_;
|
| -}
|
| -
|
| MockConnectionVisitor::MockConnectionVisitor() {
|
| }
|
|
|
| @@ -167,36 +156,6 @@
|
| return packet;
|
| }
|
|
|
| -MockConnection::MockConnection(QuicGuid guid, IPEndPoint address)
|
| - : QuicConnection(guid, address, new MockHelper()) {
|
| -}
|
| -
|
| -MockConnection::~MockConnection() {
|
| -}
|
| -
|
| -PacketSavingConnection::PacketSavingConnection(QuicGuid guid,
|
| - IPEndPoint address)
|
| - : MockConnection(guid, address) {
|
| -}
|
| -
|
| -PacketSavingConnection::~PacketSavingConnection() {
|
| -}
|
| -
|
| -bool PacketSavingConnection::SendPacket(QuicPacketSequenceNumber number,
|
| - QuicPacket* packet,
|
| - bool resend,
|
| - bool force) {
|
| - packets_.push_back(packet);
|
| - return true;
|
| -}
|
| -
|
| -MockSession::MockSession(QuicConnection* connection, bool is_server)
|
| - : QuicSession(connection, is_server) {
|
| -}
|
| -
|
| -MockSession::~MockSession() {
|
| -}
|
| -
|
| } // namespace test
|
|
|
| } // namespace net
|
|
|