| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_PACKET_DROPPING_TEST_WRITER_H_ | 5 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_PACKET_DROPPING_TEST_WRITER_H_ |
| 6 #define NET_TOOLS_QUIC_TEST_TOOLS_PACKET_DROPPING_TEST_WRITER_H_ | 6 #define NET_TOOLS_QUIC_TEST_TOOLS_PACKET_DROPPING_TEST_WRITER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/basictypes.h" |
| 10 #include "base/logging.h" | 11 #include "base/logging.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
| 13 #include "net/quic/quic_alarm.h" | 14 #include "net/quic/quic_alarm.h" |
| 14 #include "net/quic/quic_blocked_writer_interface.h" | 15 #include "net/quic/quic_blocked_writer_interface.h" |
| 15 #include "net/quic/quic_packet_writer.h" | 16 #include "net/quic/quic_packet_writer.h" |
| 16 #include "net/quic/test_tools/quic_test_writer.h" | 17 #include "net/quic/test_tools/quic_test_writer.h" |
| 17 #include "net/tools/quic/quic_epoll_clock.h" | 18 #include "net/tools/quic/quic_epoll_clock.h" |
| 18 #include "net/tools/quic/test_tools/quic_test_client.h" | 19 #include "net/tools/quic/test_tools/quic_test_client.h" |
| 19 #include "net/tools/quic/test_tools/quic_test_utils.h" | 20 #include "net/tools/quic/test_tools/quic_test_utils.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 QuicByteCount buffer_size_; | 138 QuicByteCount buffer_size_; |
| 138 | 139 |
| 139 DISALLOW_COPY_AND_ASSIGN(PacketDroppingTestWriter); | 140 DISALLOW_COPY_AND_ASSIGN(PacketDroppingTestWriter); |
| 140 }; | 141 }; |
| 141 | 142 |
| 142 } // namespace test | 143 } // namespace test |
| 143 } // namespace tools | 144 } // namespace tools |
| 144 } // namespace net | 145 } // namespace net |
| 145 | 146 |
| 146 #endif // NET_TOOLS_QUIC_TEST_TOOLS_PACKET_DROPPING_TEST_WRITER_H_ | 147 #endif // NET_TOOLS_QUIC_TEST_TOOLS_PACKET_DROPPING_TEST_WRITER_H_ |
| OLD | NEW |