| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 #include "net/quic/quic_stream_sequencer_buffer.h" | 4 #include "net/quic/core/quic_stream_sequencer_buffer.h" |
| 5 | 5 |
| 6 #include <algorithm> | 6 #include <algorithm> |
| 7 #include <limits> | 7 #include <limits> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| 11 | 11 |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/rand_util.h" | 14 #include "base/rand_util.h" |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1051 EXPECT_LE(bytes_to_buffer_, total_bytes_read_) << "iterations: " | 1051 EXPECT_LE(bytes_to_buffer_, total_bytes_read_) << "iterations: " |
| 1052 << iterations; | 1052 << iterations; |
| 1053 EXPECT_LE(bytes_to_buffer_, total_bytes_written_); | 1053 EXPECT_LE(bytes_to_buffer_, total_bytes_written_); |
| 1054 } | 1054 } |
| 1055 | 1055 |
| 1056 } // anonymous namespace | 1056 } // anonymous namespace |
| 1057 | 1057 |
| 1058 } // namespace test | 1058 } // namespace test |
| 1059 | 1059 |
| 1060 } // namespace net | 1060 } // namespace net |
| OLD | NEW |