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 #ifndef NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ | 5 #ifndef NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ |
6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ | 6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/containers/hash_tables.h" |
13 #include "base/containers/mru_cache.h" | 14 #include "base/containers/mru_cache.h" |
14 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
15 #include "base/hash_tables.h" | |
16 #include "base/threading/non_thread_safe.h" | 16 #include "base/threading/non_thread_safe.h" |
17 #include "base/values.h" | 17 #include "base/values.h" |
18 #include "net/base/host_port_pair.h" | 18 #include "net/base/host_port_pair.h" |
19 #include "net/base/net_export.h" | 19 #include "net/base/net_export.h" |
20 #include "net/http/http_pipelined_host_capability.h" | 20 #include "net/http/http_pipelined_host_capability.h" |
21 #include "net/http/http_server_properties.h" | 21 #include "net/http/http_server_properties.h" |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class ListValue; | 24 class ListValue; |
25 } | 25 } |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 AlternateProtocolMap alternate_protocol_map_; | 146 AlternateProtocolMap alternate_protocol_map_; |
147 SpdySettingsMap spdy_settings_map_; | 147 SpdySettingsMap spdy_settings_map_; |
148 scoped_ptr<CachedPipelineCapabilityMap> pipeline_capability_map_; | 148 scoped_ptr<CachedPipelineCapabilityMap> pipeline_capability_map_; |
149 | 149 |
150 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl); | 150 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl); |
151 }; | 151 }; |
152 | 152 |
153 } // namespace net | 153 } // namespace net |
154 | 154 |
155 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ | 155 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ |
OLD | NEW |