Index: net/http/http_server_properties_manager.cc |
diff --git a/net/http/http_server_properties_manager.cc b/net/http/http_server_properties_manager.cc |
index af728840f5ba8273ea91629eaf323e723b222127..873c8ca700faae8a9b1b39de9e47877d9000828b 100644 |
--- a/net/http/http_server_properties_manager.cc |
+++ b/net/http/http_server_properties_manager.cc |
@@ -146,6 +146,26 @@ void HttpServerPropertiesManager::SetSupportsSpdy(const HostPortPair& server, |
ScheduleUpdatePrefsOnNetworkThread(); |
} |
+bool HttpServerPropertiesManager::RequiresHTTP11( |
+ const net::HostPortPair& server) { |
+ DCHECK(network_task_runner_->RunsTasksOnCurrentThread()); |
+ return http_server_properties_impl_->RequiresHTTP11(server); |
+} |
+ |
+void HttpServerPropertiesManager::SetHTTP11Required( |
+ const net::HostPortPair& server) { |
+ DCHECK(network_task_runner_->RunsTasksOnCurrentThread()); |
+ |
+ http_server_properties_impl_->SetHTTP11Required(server); |
+ ScheduleUpdatePrefsOnNetworkThread(); |
+} |
+ |
+void HttpServerPropertiesManager::MaybeForceHTTP11(const HostPortPair& server, |
+ SSLConfig* ssl_config) { |
+ DCHECK(network_task_runner_->RunsTasksOnCurrentThread()); |
+ http_server_properties_impl_->MaybeForceHTTP11(server, ssl_config); |
+} |
+ |
bool HttpServerPropertiesManager::HasAlternateProtocol( |
const HostPortPair& server) { |
DCHECK(network_task_runner_->RunsTasksOnCurrentThread()); |