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 c2e204db65df56bb58c83ee69928396be30cdc9a..d99af2c82767c90d19089934cc737c739a68c1fc 100644 |
--- a/chrome/browser/net/http_server_properties_manager.cc |
+++ b/chrome/browser/net/http_server_properties_manager.cc |
@@ -269,12 +269,14 @@ HttpServerPropertiesManager::spdy_settings_map() const { |
void HttpServerPropertiesManager::SetServerNetworkStats( |
const net::HostPortPair& host_port_pair, |
NetworkStats stats) { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
http_server_properties_impl_->SetServerNetworkStats(host_port_pair, stats); |
} |
const HttpServerPropertiesManager::NetworkStats* |
HttpServerPropertiesManager::GetServerNetworkStats( |
const net::HostPortPair& host_port_pair) const { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
return http_server_properties_impl_->GetServerNetworkStats(host_port_pair); |
} |