Index: net/spdy/spdy_network_transaction_unittest.cc |
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc |
index 89451ea7785b01795eb7f9edb9622ed401ff377f..51db006e7692ade79f29404314a5e377d18c8220 100644 |
--- a/net/spdy/spdy_network_transaction_unittest.cc |
+++ b/net/spdy/spdy_network_transaction_unittest.cc |
@@ -588,7 +588,7 @@ class SpdyNetworkTransactionTest |
int port = helper.test_params().ssl_type == SPDYNPN ? 443 : 80; |
HostPortPair host_port_pair(url.host(), port); |
SpdySessionKey key(host_port_pair, ProxyServer::Direct(), |
- kPrivacyModeDisabled); |
+ PRIVACY_MODE_DISABLED); |
BoundNetLog log; |
const scoped_refptr<HttpNetworkSession>& session = helper.session(); |
base::WeakPtr<SpdySession> spdy_session = |
@@ -4770,12 +4770,12 @@ TEST_P(SpdyNetworkTransactionTest, DirectConnectProxyReconnect) { |
// Check that the SpdySession is still in the SpdySessionPool. |
HostPortPair host_port_pair("www.google.com", helper.port()); |
SpdySessionKey session_pool_key_direct( |
- host_port_pair, ProxyServer::Direct(), kPrivacyModeDisabled); |
+ host_port_pair, ProxyServer::Direct(), PRIVACY_MODE_DISABLED); |
EXPECT_TRUE(HasSpdySession(spdy_session_pool, session_pool_key_direct)); |
SpdySessionKey session_pool_key_proxy( |
host_port_pair, |
ProxyServer::FromURI("www.foo.com", ProxyServer::SCHEME_HTTP), |
- kPrivacyModeDisabled); |
+ PRIVACY_MODE_DISABLED); |
EXPECT_FALSE(HasSpdySession(spdy_session_pool, session_pool_key_proxy)); |
// Set up data for the proxy connection. |