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_test_util_spdy2.h" | 5 #include "net/spdy/spdy_test_util_spdy2.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/string_number_conversions.h" | 11 #include "base/string_number_conversions.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "net/base/mock_cert_verifier.h" | 13 #include "net/cert/mock_cert_verifier.h" |
14 #include "net/http/http_network_session.h" | 14 #include "net/http/http_network_session.h" |
15 #include "net/http/http_network_transaction.h" | 15 #include "net/http/http_network_transaction.h" |
16 #include "net/http/http_server_properties_impl.h" | 16 #include "net/http/http_server_properties_impl.h" |
17 #include "net/spdy/buffered_spdy_framer.h" | 17 #include "net/spdy/buffered_spdy_framer.h" |
18 #include "net/spdy/spdy_http_utils.h" | 18 #include "net/spdy/spdy_http_utils.h" |
19 #include "net/spdy/spdy_session.h" | 19 #include "net/spdy/spdy_session.h" |
20 | 20 |
21 namespace net { | 21 namespace net { |
22 namespace test_spdy2 { | 22 namespace test_spdy2 { |
23 | 23 |
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
984 RST_STREAM_INVALID, // Status | 984 RST_STREAM_INVALID, // Status |
985 NULL, // Data | 985 NULL, // Data |
986 0, // Length | 986 0, // Length |
987 DATA_FLAG_NONE // Data Flags | 987 DATA_FLAG_NONE // Data Flags |
988 }; | 988 }; |
989 return kHeader; | 989 return kHeader; |
990 } | 990 } |
991 | 991 |
992 } // namespace test_spdy2 | 992 } // namespace test_spdy2 |
993 } // namespace net | 993 } // namespace net |
OLD | NEW |