| Index: chrome/browser/net/http_server_properties_manager.cc
|
| diff --git a/chrome/browser/net/http_server_properties_manager.cc b/chrome/browser/net/http_server_properties_manager.cc
|
| index 1bde25e4109bab522b0f74f053d5bda727562a0b..08f8ee2df5fb59edf7e4ec79c3f549d97b9f83c2 100644
|
| --- a/chrome/browser/net/http_server_properties_manager.cc
|
| +++ b/chrome/browser/net/http_server_properties_manager.cc
|
| @@ -177,6 +177,13 @@ void HttpServerPropertiesManager::SetBrokenAlternateProtocol(
|
| ScheduleUpdatePrefsOnIO();
|
| }
|
|
|
| +void HttpServerPropertiesManager::ClearAlternateProtocol(
|
| + const net::HostPortPair& server) {
|
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| + http_server_properties_impl_->ClearAlternateProtocol(server);
|
| + ScheduleUpdatePrefsOnIO();
|
| +}
|
| +
|
| const net::AlternateProtocolMap&
|
| HttpServerPropertiesManager::alternate_protocol_map() const {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
|
|