| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "header_coalescer.h" | 5 #include "net/spdy/header_coalescer.h" |
| 6 |
| 7 #include <vector> |
| 6 | 8 |
| 7 #include "net/spdy/platform/api/spdy_string.h" | 9 #include "net/spdy/platform/api/spdy_string.h" |
| 8 #include "net/spdy/platform/api/spdy_string_utils.h" | 10 #include "net/spdy/platform/api/spdy_string_utils.h" |
| 9 #include "testing/gmock/include/gmock/gmock.h" | 11 #include "testing/gmock/include/gmock/gmock.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 13 |
| 12 using ::testing::ElementsAre; | 14 using ::testing::ElementsAre; |
| 13 using ::testing::Pair; | 15 using ::testing::Pair; |
| 14 | 16 |
| 15 namespace net { | 17 namespace net { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 header_block, | 131 header_block, |
| 130 ElementsAre(Pair("foo_0", SpdyStringPiece(header_values[0].data(), | 132 ElementsAre(Pair("foo_0", SpdyStringPiece(header_values[0].data(), |
| 131 header_values[0].size())), | 133 header_values[0].size())), |
| 132 Pair("foo_1", SpdyStringPiece(header_values[1].data(), | 134 Pair("foo_1", SpdyStringPiece(header_values[1].data(), |
| 133 header_values[1].size())))); | 135 header_values[1].size())))); |
| 134 } | 136 } |
| 135 | 137 |
| 136 } // namespace test | 138 } // namespace test |
| 137 | 139 |
| 138 } // namespace net | 140 } // namespace net |
| OLD | NEW |