| 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_H_ | 5 #ifndef NET_HTTP_HTTP_SERVER_PROPERTIES_H_ |
| 6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_H_ | 6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <tuple> | 12 #include <tuple> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/containers/mru_cache.h" | 15 #include "base/containers/mru_cache.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/time/time.h" | 17 #include "base/time/time.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/quic/quic_bandwidth.h" | 20 #include "net/quic/core/quic_bandwidth.h" |
| 21 #include "net/quic/quic_server_id.h" | 21 #include "net/quic/core/quic_server_id.h" |
| 22 #include "net/socket/next_proto.h" | 22 #include "net/socket/next_proto.h" |
| 23 #include "net/spdy/spdy_framer.h" // TODO(willchan): Reconsider this. | 23 #include "net/spdy/spdy_framer.h" // TODO(willchan): Reconsider this. |
| 24 #include "net/spdy/spdy_protocol.h" | 24 #include "net/spdy/spdy_protocol.h" |
| 25 #include "url/scheme_host_port.h" | 25 #include "url/scheme_host_port.h" |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class Value; | 28 class Value; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace net { | 31 namespace net { |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 virtual void SetMaxServerConfigsStoredInProperties( | 370 virtual void SetMaxServerConfigsStoredInProperties( |
| 371 size_t max_server_configs_stored_in_properties) = 0; | 371 size_t max_server_configs_stored_in_properties) = 0; |
| 372 | 372 |
| 373 private: | 373 private: |
| 374 DISALLOW_COPY_AND_ASSIGN(HttpServerProperties); | 374 DISALLOW_COPY_AND_ASSIGN(HttpServerProperties); |
| 375 }; | 375 }; |
| 376 | 376 |
| 377 } // namespace net | 377 } // namespace net |
| 378 | 378 |
| 379 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_H_ | 379 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_H_ |
| OLD | NEW |