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/test_tools/quic_test_utils.h" | 7 #include "net/quic/test_tools/quic_test_utils.h" |
8 #include "net/tools/quic/quic_epoll_connection_helper.h" | 8 #include "net/tools/quic/quic_epoll_connection_helper.h" |
9 | 9 |
10 using base::StringPiece; | 10 using base::StringPiece; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 TestSession::~TestSession() {} | 69 TestSession::~TestSession() {} |
70 | 70 |
71 void TestSession::SetCryptoStream(QuicCryptoStream* stream) { | 71 void TestSession::SetCryptoStream(QuicCryptoStream* stream) { |
72 crypto_stream_ = stream; | 72 crypto_stream_ = stream; |
73 } | 73 } |
74 | 74 |
75 QuicCryptoStream* TestSession::GetCryptoStream() { | 75 QuicCryptoStream* TestSession::GetCryptoStream() { |
76 return crypto_stream_; | 76 return crypto_stream_; |
77 } | 77 } |
78 | 78 |
| 79 MockAckNotifierDelegate::MockAckNotifierDelegate() { |
| 80 } |
| 81 |
| 82 MockAckNotifierDelegate::~MockAckNotifierDelegate() { |
| 83 } |
| 84 |
79 } // namespace test | 85 } // namespace test |
80 } // namespace tools | 86 } // namespace tools |
81 } // namespace net | 87 } // namespace net |
OLD | NEW |