| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/spdy/spdy_prefixed_buffer_reader.h" | 5 #include "net/spdy/core/spdy_prefixed_buffer_reader.h" |
| 6 | 6 |
| 7 #include "net/spdy/platform/api/spdy_string.h" | 7 #include "net/spdy/platform/api/spdy_string.h" |
| 8 #include "net/spdy/platform/api/spdy_string_piece.h" | 8 #include "net/spdy/platform/api/spdy_string_piece.h" |
| 9 #include "testing/gmock/include/gmock/gmock.h" | 9 #include "testing/gmock/include/gmock/gmock.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 11 |
| 12 namespace net { | 12 namespace net { |
| 13 | 13 |
| 14 namespace test { | 14 namespace test { |
| 15 | 15 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 EXPECT_EQ(1u, reader.Available()); | 122 EXPECT_EQ(1u, reader.Available()); |
| 123 | 123 |
| 124 EXPECT_TRUE(reader.ReadN(1, buffer)); | 124 EXPECT_TRUE(reader.ReadN(1, buffer)); |
| 125 EXPECT_THAT(buffer, ElementsAreArray("lec4")); | 125 EXPECT_THAT(buffer, ElementsAreArray("lec4")); |
| 126 EXPECT_EQ(0u, reader.Available()); | 126 EXPECT_EQ(0u, reader.Available()); |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace test | 129 } // namespace test |
| 130 | 130 |
| 131 } // namespace net | 131 } // namespace net |
| OLD | NEW |