| Index: net/http/http_network_transaction_unittest.cc
|
| diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc
|
| index 02a77e4cc6b52031e5ef7b466946a1b01a335211..ca0678533d7e90b8657a23fe7a1f01ac0f340d3c 100644
|
| --- a/net/http/http_network_transaction_unittest.cc
|
| +++ b/net/http/http_network_transaction_unittest.cc
|
| @@ -9218,7 +9218,7 @@
|
| // Set up an initial SpdySession in the pool to reuse.
|
| HostPortPair host_port_pair("www.google.com", 443);
|
| SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
|
| - PRIVACY_MODE_DISABLED);
|
| + kPrivacyModeDisabled);
|
| base::WeakPtr<SpdySession> spdy_session =
|
| CreateSecureSpdySession(session, key, BoundNetLog());
|
|
|
| @@ -10377,7 +10377,7 @@
|
| // Set up an initial SpdySession in the pool to reuse.
|
| HostPortPair host_port_pair("www.google.com", 443);
|
| SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
|
| - PRIVACY_MODE_DISABLED);
|
| + kPrivacyModeDisabled);
|
| base::WeakPtr<SpdySession> spdy_session =
|
| CreateInsecureSpdySession(session, key, BoundNetLog());
|
|
|
| @@ -11735,7 +11735,7 @@
|
|
|
| HostPortPair host_port_pair_a("www.a.com", 443);
|
| SpdySessionKey spdy_session_key_a(
|
| - host_port_pair_a, ProxyServer::Direct(), PRIVACY_MODE_DISABLED);
|
| + host_port_pair_a, ProxyServer::Direct(), kPrivacyModeDisabled);
|
| EXPECT_FALSE(
|
| HasSpdySession(session->spdy_session_pool(), spdy_session_key_a));
|
|
|
| @@ -11767,7 +11767,7 @@
|
|
|
| HostPortPair host_port_pair_b("www.b.com", 443);
|
| SpdySessionKey spdy_session_key_b(
|
| - host_port_pair_b, ProxyServer::Direct(), PRIVACY_MODE_DISABLED);
|
| + host_port_pair_b, ProxyServer::Direct(), kPrivacyModeDisabled);
|
| EXPECT_FALSE(
|
| HasSpdySession(session->spdy_session_pool(), spdy_session_key_b));
|
| HttpRequestInfo request2;
|
| @@ -11795,7 +11795,7 @@
|
|
|
| HostPortPair host_port_pair_a1("www.a.com", 80);
|
| SpdySessionKey spdy_session_key_a1(
|
| - host_port_pair_a1, ProxyServer::Direct(), PRIVACY_MODE_DISABLED);
|
| + host_port_pair_a1, ProxyServer::Direct(), kPrivacyModeDisabled);
|
| EXPECT_FALSE(
|
| HasSpdySession(session->spdy_session_pool(), spdy_session_key_a1));
|
| HttpRequestInfo request3;
|
|
|