OLD | NEW |
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/chromium/quic_chromium_client_stream.h" | 5 #include "net/quic/chromium/quic_chromium_client_stream.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
11 #include "net/base/io_buffer.h" | 11 #include "net/base/io_buffer.h" |
12 #include "net/base/net_errors.h" | 12 #include "net/base/net_errors.h" |
13 #include "net/base/test_completion_callback.h" | 13 #include "net/base/test_completion_callback.h" |
14 #include "net/quic/chromium/quic_chromium_client_session.h" | 14 #include "net/quic/chromium/quic_chromium_client_session.h" |
15 #include "net/quic/quic_client_session_base.h" | 15 #include "net/quic/core/quic_client_session_base.h" |
16 #include "net/quic/quic_utils.h" | 16 #include "net/quic/core/quic_utils.h" |
17 #include "net/quic/spdy_utils.h" | 17 #include "net/quic/core/spdy_utils.h" |
18 #include "net/quic/test_tools/crypto_test_utils.h" | 18 #include "net/quic/test_tools/crypto_test_utils.h" |
19 #include "net/quic/test_tools/quic_test_utils.h" | 19 #include "net/quic/test_tools/quic_test_utils.h" |
20 #include "net/test/gtest_util.h" | 20 #include "net/test/gtest_util.h" |
21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
22 #include "testing/gmock_mutant.h" | 22 #include "testing/gmock_mutant.h" |
23 | 23 |
24 using net::test::IsError; | 24 using net::test::IsError; |
25 using net::test::IsOk; | 25 using net::test::IsOk; |
26 | 26 |
27 using testing::AnyNumber; | 27 using testing::AnyNumber; |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 base::RunLoop().RunUntilIdle(); | 554 base::RunLoop().RunUntilIdle(); |
555 EXPECT_EQ(headers_, delegate_.headers_); | 555 EXPECT_EQ(headers_, delegate_.headers_); |
556 | 556 |
557 // Times(2) because OnClose will be called for stream and stream_. | 557 // Times(2) because OnClose will be called for stream and stream_. |
558 EXPECT_CALL(delegate_, OnClose()).Times(2); | 558 EXPECT_CALL(delegate_, OnClose()).Times(2); |
559 } | 559 } |
560 | 560 |
561 } // namespace | 561 } // namespace |
562 } // namespace test | 562 } // namespace test |
563 } // namespace net | 563 } // namespace net |
OLD | NEW |