| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 void SetHTTP11Required(const HostPortPair& server) override; | 92 void SetHTTP11Required(const HostPortPair& server) override; |
| 93 void MaybeForceHTTP11(const HostPortPair& server, | 93 void MaybeForceHTTP11(const HostPortPair& server, |
| 94 SSLConfig* ssl_config) override; | 94 SSLConfig* ssl_config) override; |
| 95 AlternateProtocolInfo GetAlternateProtocol( | 95 AlternateProtocolInfo GetAlternateProtocol( |
| 96 const HostPortPair& server) override; | 96 const HostPortPair& server) override; |
| 97 void SetAlternateProtocol(const HostPortPair& server, | 97 void SetAlternateProtocol(const HostPortPair& server, |
| 98 uint16 alternate_port, | 98 uint16 alternate_port, |
| 99 AlternateProtocol alternate_protocol, | 99 AlternateProtocol alternate_protocol, |
| 100 double probability) override; | 100 double probability) override; |
| 101 void SetBrokenAlternateProtocol(const HostPortPair& server) override; | 101 void SetBrokenAlternateProtocol(const HostPortPair& server) override; |
| 102 bool IsAlternativeServiceBroken( |
| 103 const AlternativeService& alternative_service) override; |
| 102 bool WasAlternateProtocolRecentlyBroken(const HostPortPair& server) override; | 104 bool WasAlternateProtocolRecentlyBroken(const HostPortPair& server) override; |
| 103 void ConfirmAlternateProtocol(const HostPortPair& server) override; | 105 void ConfirmAlternateProtocol(const HostPortPair& server) override; |
| 104 void ClearAlternateProtocol(const HostPortPair& server) override; | 106 void ClearAlternateProtocol(const HostPortPair& server) override; |
| 105 const AlternateProtocolMap& alternate_protocol_map() const override; | 107 const AlternateProtocolMap& alternate_protocol_map() const override; |
| 106 void SetAlternateProtocolProbabilityThreshold(double threshold) override; | 108 void SetAlternateProtocolProbabilityThreshold(double threshold) override; |
| 107 const SettingsMap& GetSpdySettings( | 109 const SettingsMap& GetSpdySettings( |
| 108 const HostPortPair& host_port_pair) override; | 110 const HostPortPair& host_port_pair) override; |
| 109 bool SetSpdySetting(const HostPortPair& host_port_pair, | 111 bool SetSpdySetting(const HostPortPair& host_port_pair, |
| 110 SpdySettingsIds id, | 112 SpdySettingsIds id, |
| 111 SpdySettingsFlags flags, | 113 SpdySettingsFlags flags, |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 double alternate_protocol_probability_threshold_; | 173 double alternate_protocol_probability_threshold_; |
| 172 | 174 |
| 173 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_; | 175 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_; |
| 174 | 176 |
| 175 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl); | 177 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl); |
| 176 }; | 178 }; |
| 177 | 179 |
| 178 } // namespace net | 180 } // namespace net |
| 179 | 181 |
| 180 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ | 182 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ |
| OLD | NEW |