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

Side by Side Diff: net/quic/core/frames/quic_frame_test.cc

Issue 2545543003: Split up quic_frames.{h,cc} into files for each frame type. (Closed)
Patch Set: Created 4 years 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/quic/core/frames/quic_frame.cc ('k') | net/quic/core/frames/quic_goaway_frame.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 (c) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "net/quic/core/quic_frames.h" 5 #include "net/quic/core/frames/quic_frame.h"
6 6
7 #include "testing/gmock/include/gmock/gmock.h" 7 #include "testing/gmock/include/gmock/gmock.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 9
10 namespace net { 10 namespace net {
11 namespace test { 11 namespace test {
12 namespace { 12 namespace {
13 13
14 using testing::_; 14 using testing::_;
15 15
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 EXPECT_EQ(2u, queue.NumIntervals()); 265 EXPECT_EQ(2u, queue.NumIntervals());
266 EXPECT_TRUE(queue.Contains(10)); 266 EXPECT_TRUE(queue.Contains(10));
267 EXPECT_TRUE(queue.Contains(11)); 267 EXPECT_TRUE(queue.Contains(11));
268 EXPECT_TRUE(queue.Contains(20)); 268 EXPECT_TRUE(queue.Contains(20));
269 EXPECT_TRUE(queue.Contains(21)); 269 EXPECT_TRUE(queue.Contains(21));
270 } 270 }
271 271
272 } // namespace 272 } // namespace
273 } // namespace test 273 } // namespace test
274 } // namespace net 274 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/core/frames/quic_frame.cc ('k') | net/quic/core/frames/quic_goaway_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698