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/spdy/spdy_http_stream.h" | 5 #include "net/spdy/spdy_http_stream.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
| 13 #include "base/threading/thread_task_runner_handle.h" |
13 #include "crypto/ec_private_key.h" | 14 #include "crypto/ec_private_key.h" |
14 #include "crypto/ec_signature_creator.h" | 15 #include "crypto/ec_signature_creator.h" |
15 #include "crypto/signature_creator.h" | 16 #include "crypto/signature_creator.h" |
16 #include "net/base/chunked_upload_data_stream.h" | 17 #include "net/base/chunked_upload_data_stream.h" |
17 #include "net/base/load_timing_info.h" | 18 #include "net/base/load_timing_info.h" |
18 #include "net/base/load_timing_info_test_util.h" | 19 #include "net/base/load_timing_info_test_util.h" |
19 #include "net/base/test_completion_callback.h" | 20 #include "net/base/test_completion_callback.h" |
20 #include "net/cert/asn1_util.h" | 21 #include "net/cert/asn1_util.h" |
21 #include "net/http/http_request_info.h" | 22 #include "net/http/http_request_info.h" |
22 #include "net/http/http_response_headers.h" | 23 #include "net/http/http_response_headers.h" |
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1049 | 1050 |
1050 EXPECT_FALSE(HasSpdySession(http_session_->spdy_session_pool(), key_)); | 1051 EXPECT_FALSE(HasSpdySession(http_session_->spdy_session_pool(), key_)); |
1051 } | 1052 } |
1052 | 1053 |
1053 // TODO(willchan): Write a longer test for SpdyStream that exercises all | 1054 // TODO(willchan): Write a longer test for SpdyStream that exercises all |
1054 // methods. | 1055 // methods. |
1055 | 1056 |
1056 } // namespace test | 1057 } // namespace test |
1057 | 1058 |
1058 } // namespace net | 1059 } // namespace net |
OLD | NEW |