Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: net/spdy/core/spdy_prefixed_buffer_reader_test.cc

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/spdy/core/spdy_prefixed_buffer_reader.cc ('k') | net/spdy/core/spdy_protocol.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « net/spdy/core/spdy_prefixed_buffer_reader.cc ('k') | net/spdy/core/spdy_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698