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 "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "base/threading/sequenced_worker_pool.h" | 8 #include "base/threading/sequenced_worker_pool.h" |
9 #include "crypto/ec_private_key.h" | 9 #include "crypto/ec_private_key.h" |
10 #include "crypto/ec_signature_creator.h" | 10 #include "crypto/ec_signature_creator.h" |
11 #include "crypto/signature_creator.h" | 11 #include "crypto/signature_creator.h" |
12 #include "net/base/asn1_util.h" | 12 #include "net/base/asn1_util.h" |
13 #include "net/base/capturing_net_log.h" | 13 #include "net/base/capturing_net_log.h" |
14 #include "net/base/default_server_bound_cert_store.h" | |
15 #include "net/base/load_timing_info.h" | 14 #include "net/base/load_timing_info.h" |
16 #include "net/base/load_timing_info_test_util.h" | 15 #include "net/base/load_timing_info_test_util.h" |
17 #include "net/base/upload_data_stream.h" | 16 #include "net/base/upload_data_stream.h" |
18 #include "net/base/upload_element_reader.h" | 17 #include "net/base/upload_element_reader.h" |
19 #include "net/http/http_request_info.h" | 18 #include "net/http/http_request_info.h" |
20 #include "net/http/http_response_headers.h" | 19 #include "net/http/http_response_headers.h" |
21 #include "net/http/http_response_info.h" | 20 #include "net/http/http_response_info.h" |
22 #include "net/spdy/spdy_credential_builder.h" | 21 #include "net/spdy/spdy_credential_builder.h" |
23 #include "net/spdy/spdy_http_utils.h" | 22 #include "net/spdy/spdy_http_utils.h" |
24 #include "net/spdy/spdy_session.h" | 23 #include "net/spdy/spdy_session.h" |
25 #include "net/spdy/spdy_test_util_spdy3.h" | 24 #include "net/spdy/spdy_test_util_spdy3.h" |
| 25 #include "net/ssl/default_server_bound_cert_store.h" |
26 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
27 | 27 |
28 using namespace net::test_spdy3; | 28 using namespace net::test_spdy3; |
29 | 29 |
30 namespace net { | 30 namespace net { |
31 | 31 |
32 namespace { | 32 namespace { |
33 | 33 |
34 // Tests the load timing of a stream that's connected and is not the first | 34 // Tests the load timing of a stream that's connected and is not the first |
35 // request sent on a connection. | 35 // request sent on a connection. |
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
863 | 863 |
864 sequenced_worker_pool->Shutdown(); | 864 sequenced_worker_pool->Shutdown(); |
865 } | 865 } |
866 | 866 |
867 #endif // !defined(USE_OPENSSL) | 867 #endif // !defined(USE_OPENSSL) |
868 | 868 |
869 // TODO(willchan): Write a longer test for SpdyStream that exercises all | 869 // TODO(willchan): Write a longer test for SpdyStream that exercises all |
870 // methods. | 870 // methods. |
871 | 871 |
872 } // namespace net | 872 } // namespace net |
OLD | NEW |