Index: net/http/http_server_properties_manager.h |
diff --git a/net/http/http_server_properties_manager.h b/net/http/http_server_properties_manager.h |
index 22e2499af6997478233a8a589532ebd472f91c64..4a8c71bcbc7a0b0775a9258de69cb580fa5c983f 100644 |
--- a/net/http/http_server_properties_manager.h |
+++ b/net/http/http_server_properties_manager.h |
@@ -155,10 +155,12 @@ class NET_EXPORT HttpServerPropertiesManager : public HttpServerProperties { |
const SupportsQuicMap& supports_quic_map() const override; |
void SetServerNetworkStats(const HostPortPair& host_port_pair, |
- NetworkStats stats) override; |
+ ServerNetworkStats stats) override; |
- const NetworkStats* GetServerNetworkStats( |
- const HostPortPair& host_port_pair) const override; |
+ const ServerNetworkStats* GetServerNetworkStats( |
+ const HostPortPair& host_port_pair) override; |
+ |
+ const ServerNetworkStatsMap& server_network_stats_map() const override; |
protected: |
// -------------------- |
@@ -186,6 +188,7 @@ class NET_EXPORT HttpServerPropertiesManager : public HttpServerProperties { |
SpdySettingsMap* spdy_settings_map, |
AlternateProtocolMap* alternate_protocol_map, |
SupportsQuicMap* supports_quic_map, |
+ ServerNetworkStatsMap* server_network_stats_map, |
bool detected_corrupted_prefs); |
// These are used to delay updating the preferences when cached data in |
@@ -214,6 +217,7 @@ class NET_EXPORT HttpServerPropertiesManager : public HttpServerProperties { |
SpdySettingsMap* spdy_settings_map, |
AlternateProtocolMap* alternate_protocol_map, |
SupportsQuicMap* supports_quic_map, |
+ ServerNetworkStatsMap* server_network_stats_map, |
const base::Closure& completion); |
private: |