| 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 <ostream> | 11 #include <ostream> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <tuple> | 13 #include <tuple> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/containers/mru_cache.h" | 16 #include "base/containers/mru_cache.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 19 #include "net/base/host_port_pair.h" | 19 #include "net/base/host_port_pair.h" |
| 20 #include "net/base/net_export.h" | 20 #include "net/base/net_export.h" |
| 21 #include "net/quic/core/quic_bandwidth.h" | 21 #include "net/quic/core/quic_bandwidth.h" |
| 22 #include "net/quic/core/quic_server_id.h" | 22 #include "net/quic/core/quic_server_id.h" |
| 23 #include "net/socket/next_proto.h" | 23 #include "net/socket/next_proto.h" |
| 24 #include "net/spdy/spdy_framer.h" // TODO(willchan): Reconsider this. | 24 #include "net/spdy/core/spdy_framer.h" // TODO(willchan): Reconsider this. |
| 25 #include "net/spdy/spdy_protocol.h" | 25 #include "net/spdy/core/spdy_protocol.h" |
| 26 #include "url/scheme_host_port.h" | 26 #include "url/scheme_host_port.h" |
| 27 | 27 |
| 28 namespace base { | 28 namespace base { |
| 29 class Value; | 29 class Value; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace net { | 32 namespace net { |
| 33 | 33 |
| 34 class IPAddress; | 34 class IPAddress; |
| 35 struct SSLConfig; | 35 struct SSLConfig; |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 // Returns whether HttpServerProperties is initialized. | 337 // Returns whether HttpServerProperties is initialized. |
| 338 virtual bool IsInitialized() const = 0; | 338 virtual bool IsInitialized() const = 0; |
| 339 | 339 |
| 340 private: | 340 private: |
| 341 DISALLOW_COPY_AND_ASSIGN(HttpServerProperties); | 341 DISALLOW_COPY_AND_ASSIGN(HttpServerProperties); |
| 342 }; | 342 }; |
| 343 | 343 |
| 344 } // namespace net | 344 } // namespace net |
| 345 | 345 |
| 346 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_H_ | 346 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_H_ |
| OLD | NEW |