| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_MANAGER_H_ | 5 #ifndef NET_HTTP_HTTP_SERVER_PROPERTIES_MANAGER_H_ |
| 6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_MANAGER_H_ | 6 #define NET_HTTP_HTTP_SERVER_PROPERTIES_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 const AlternativeService& alternative_service) override; | 96 const AlternativeService& alternative_service) override; |
| 97 bool IsAlternativeServiceBroken( | 97 bool IsAlternativeServiceBroken( |
| 98 const AlternativeService& alternative_service) const override; | 98 const AlternativeService& alternative_service) const override; |
| 99 bool WasAlternativeServiceRecentlyBroken( | 99 bool WasAlternativeServiceRecentlyBroken( |
| 100 const AlternativeService& alternative_service) override; | 100 const AlternativeService& alternative_service) override; |
| 101 void ConfirmAlternativeService( | 101 void ConfirmAlternativeService( |
| 102 const AlternativeService& alternative_service) override; | 102 const AlternativeService& alternative_service) override; |
| 103 void ClearAlternativeService(const HostPortPair& origin) override; | 103 void ClearAlternativeService(const HostPortPair& origin) override; |
| 104 const AlternativeServiceMap& alternative_service_map() const override; | 104 const AlternativeServiceMap& alternative_service_map() const override; |
| 105 base::Value* GetAlternativeServiceInfoAsValue() const override; | 105 base::Value* GetAlternativeServiceInfoAsValue() const override; |
| 106 void SetAlternateProtocolProbabilityThreshold(double threshold) override; | 106 void SetAlternativeServiceProbabilityThreshold(double threshold) override; |
| 107 const SettingsMap& GetSpdySettings( | 107 const SettingsMap& GetSpdySettings( |
| 108 const HostPortPair& host_port_pair) override; | 108 const HostPortPair& host_port_pair) override; |
| 109 bool SetSpdySetting(const HostPortPair& host_port_pair, | 109 bool SetSpdySetting(const HostPortPair& host_port_pair, |
| 110 SpdySettingsIds id, | 110 SpdySettingsIds id, |
| 111 SpdySettingsFlags flags, | 111 SpdySettingsFlags flags, |
| 112 uint32 value) override; | 112 uint32 value) override; |
| 113 void ClearSpdySettings(const HostPortPair& host_port_pair) override; | 113 void ClearSpdySettings(const HostPortPair& host_port_pair) override; |
| 114 void ClearAllSpdySettings() override; | 114 void ClearAllSpdySettings() override; |
| 115 const SpdySettingsMap& spdy_settings_map() const override; | 115 const SpdySettingsMap& spdy_settings_map() const override; |
| 116 bool GetSupportsQuic(IPAddressNumber* last_address) const override; | 116 bool GetSupportsQuic(IPAddressNumber* last_address) const override; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 // Used to get |weak_ptr_| to self on the network thread. | 249 // Used to get |weak_ptr_| to self on the network thread. |
| 250 scoped_ptr<base::WeakPtrFactory<HttpServerPropertiesManager> > | 250 scoped_ptr<base::WeakPtrFactory<HttpServerPropertiesManager> > |
| 251 network_weak_ptr_factory_; | 251 network_weak_ptr_factory_; |
| 252 | 252 |
| 253 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesManager); | 253 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesManager); |
| 254 }; | 254 }; |
| 255 | 255 |
| 256 } // namespace net | 256 } // namespace net |
| 257 | 257 |
| 258 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_MANAGER_H_ | 258 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_MANAGER_H_ |
| OLD | NEW |