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

Side by Side Diff: net/quic/core/quic_session_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/quic/core/quic_headers_stream_test.cc ('k') | net/quic/core/quic_spdy_stream.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_session.h" 5 #include "net/quic/core/quic_session.h"
6 6
7 #include <cstdint> 7 #include <cstdint>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 11 matching lines...) Expand all
22 #include "net/quic/platform/api/quic_str_cat.h" 22 #include "net/quic/platform/api/quic_str_cat.h"
23 #include "net/quic/platform/api/quic_string_piece.h" 23 #include "net/quic/platform/api/quic_string_piece.h"
24 #include "net/quic/test_tools/quic_config_peer.h" 24 #include "net/quic/test_tools/quic_config_peer.h"
25 #include "net/quic/test_tools/quic_connection_peer.h" 25 #include "net/quic/test_tools/quic_connection_peer.h"
26 #include "net/quic/test_tools/quic_flow_controller_peer.h" 26 #include "net/quic/test_tools/quic_flow_controller_peer.h"
27 #include "net/quic/test_tools/quic_session_peer.h" 27 #include "net/quic/test_tools/quic_session_peer.h"
28 #include "net/quic/test_tools/quic_spdy_session_peer.h" 28 #include "net/quic/test_tools/quic_spdy_session_peer.h"
29 #include "net/quic/test_tools/quic_spdy_stream_peer.h" 29 #include "net/quic/test_tools/quic_spdy_stream_peer.h"
30 #include "net/quic/test_tools/quic_stream_peer.h" 30 #include "net/quic/test_tools/quic_stream_peer.h"
31 #include "net/quic/test_tools/quic_test_utils.h" 31 #include "net/quic/test_tools/quic_test_utils.h"
32 #include "net/spdy/spdy_framer.h" 32 #include "net/spdy/core/spdy_framer.h"
33 #include "net/test/gtest_util.h" 33 #include "net/test/gtest_util.h"
34 #include "testing/gmock/include/gmock/gmock.h" 34 #include "testing/gmock/include/gmock/gmock.h"
35 #include "testing/gmock_mutant.h" 35 #include "testing/gmock_mutant.h"
36 #include "testing/gtest/include/gtest/gtest.h" 36 #include "testing/gtest/include/gtest/gtest.h"
37 37
38 using std::string; 38 using std::string;
39 using testing::CreateFunctor; 39 using testing::CreateFunctor;
40 using testing::AtLeast; 40 using testing::AtLeast;
41 using testing::InSequence; 41 using testing::InSequence;
42 using testing::Invoke; 42 using testing::Invoke;
(...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1314 if (version() != QUIC_VERSION_36) { 1314 if (version() != QUIC_VERSION_36) {
1315 EXPECT_FALSE(session_.force_hol_blocking()); 1315 EXPECT_FALSE(session_.force_hol_blocking());
1316 } else { 1316 } else {
1317 EXPECT_TRUE(session_.force_hol_blocking()); 1317 EXPECT_TRUE(session_.force_hol_blocking());
1318 } 1318 }
1319 } 1319 }
1320 1320
1321 } // namespace 1321 } // namespace
1322 } // namespace test 1322 } // namespace test
1323 } // namespace net 1323 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/core/quic_headers_stream_test.cc ('k') | net/quic/core/quic_spdy_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698