Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: net/http/http_server_properties_impl.h

Issue 1002043002: Revert of Add MarkAlternativeServiceRecentlyBroken. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/http/http_server_properties.h ('k') | net/http/http_server_properties_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 void MarkAlternativeServiceRecentlyBroken(
103 const AlternativeService& alternative_service) override;
104 bool IsAlternativeServiceBroken( 102 bool IsAlternativeServiceBroken(
105 const AlternativeService& alternative_service) override; 103 const AlternativeService& alternative_service) override;
106 bool WasAlternateProtocolRecentlyBroken(const HostPortPair& server) override; 104 bool WasAlternateProtocolRecentlyBroken(const HostPortPair& server) override;
107 void ConfirmAlternateProtocol(const HostPortPair& server) override; 105 void ConfirmAlternateProtocol(const HostPortPair& server) override;
108 void ClearAlternateProtocol(const HostPortPair& server) override; 106 void ClearAlternateProtocol(const HostPortPair& server) override;
109 const AlternateProtocolMap& alternate_protocol_map() const override; 107 const AlternateProtocolMap& alternate_protocol_map() const override;
110 void SetAlternateProtocolProbabilityThreshold(double threshold) override; 108 void SetAlternateProtocolProbabilityThreshold(double threshold) override;
111 const SettingsMap& GetSpdySettings( 109 const SettingsMap& GetSpdySettings(
112 const HostPortPair& host_port_pair) override; 110 const HostPortPair& host_port_pair) override;
113 bool SetSpdySetting(const HostPortPair& host_port_pair, 111 bool SetSpdySetting(const HostPortPair& host_port_pair,
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 double alternate_protocol_probability_threshold_; 173 double alternate_protocol_probability_threshold_;
176 174
177 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_; 175 base::WeakPtrFactory<HttpServerPropertiesImpl> weak_ptr_factory_;
178 176
179 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl); 177 DISALLOW_COPY_AND_ASSIGN(HttpServerPropertiesImpl);
180 }; 178 };
181 179
182 } // namespace net 180 } // namespace net
183 181
184 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_ 182 #endif // NET_HTTP_HTTP_SERVER_PROPERTIES_IMPL_H_
OLDNEW
« no previous file with comments | « net/http/http_server_properties.h ('k') | net/http/http_server_properties_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698