| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 void MarkAlternativeServiceBroken( | 98 void MarkAlternativeServiceBroken( |
| 99 const AlternativeService& alternative_service) override; | 99 const AlternativeService& alternative_service) override; |
| 100 void MarkAlternativeServiceRecentlyBroken( | 100 void MarkAlternativeServiceRecentlyBroken( |
| 101 const AlternativeService& alternative_service) override; | 101 const AlternativeService& alternative_service) override; |
| 102 bool IsAlternativeServiceBroken( | 102 bool IsAlternativeServiceBroken( |
| 103 const AlternativeService& alternative_service) const override; | 103 const AlternativeService& alternative_service) const override; |
| 104 bool WasAlternativeServiceRecentlyBroken( | 104 bool WasAlternativeServiceRecentlyBroken( |
| 105 const AlternativeService& alternative_service) override; | 105 const AlternativeService& alternative_service) override; |
| 106 void ConfirmAlternativeService( | 106 void ConfirmAlternativeService( |
| 107 const AlternativeService& alternative_service) override; | 107 const AlternativeService& alternative_service) override; |
| 108 void ClearAlternativeServices(const url::SchemeHostPort& origin) override; | |
| 109 const AlternativeServiceMap& alternative_service_map() const override; | 108 const AlternativeServiceMap& alternative_service_map() const override; |
| 110 std::unique_ptr<base::Value> GetAlternativeServiceInfoAsValue() | 109 std::unique_ptr<base::Value> GetAlternativeServiceInfoAsValue() |
| 111 const override; | 110 const override; |
| 112 const SettingsMap& GetSpdySettings( | 111 const SettingsMap& GetSpdySettings( |
| 113 const url::SchemeHostPort& server) override; | 112 const url::SchemeHostPort& server) override; |
| 114 bool SetSpdySetting(const url::SchemeHostPort& server, | 113 bool SetSpdySetting(const url::SchemeHostPort& server, |
| 115 SpdySettingsIds id, | 114 SpdySettingsIds id, |
| 116 SpdySettingsFlags flags, | 115 SpdySettingsFlags flags, |
| 117 uint32_t value) override; | 116 uint32_t value) override; |
| 118 void ClearSpdySettings(const url::SchemeHostPort& server) override; | 117 void ClearSpdySettings(const url::SchemeHostPort& server) override; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 size_t max_server_configs_stored_in_properties_; | 189 size_t max_server_configs_stored_in_properties_; |
| 191 | 190 |
| 192 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_; | 191 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_; |
| 193 | 192 |
| 194 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl); | 193 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl); |
| 195 }; | 194 }; |
| 196 | 195 |
| 197 } // namespace net | 196 } // namespace net |
| 198 | 197 |
| 199 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ | 198 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ |
| OLD | NEW |