Index: net/http/http_stream_factory_impl_unittest.cc |
diff --git a/net/http/http_stream_factory_impl_unittest.cc b/net/http/http_stream_factory_impl_unittest.cc |
index 54465dbd9940f73a6bf7587210bf3d95f4b843ee..f2185a9512833cf8a2af8d295d18059f52b59583 100644 |
--- a/net/http/http_stream_factory_impl_unittest.cc |
+++ b/net/http/http_stream_factory_impl_unittest.cc |
@@ -550,7 +550,7 @@ |
// Put a SpdySession in the pool. |
HostPortPair host_port_pair("www.google.com", 443); |
SpdySessionKey key(host_port_pair, ProxyServer::Direct(), |
- PRIVACY_MODE_DISABLED); |
+ kPrivacyModeDisabled); |
ignore_result(CreateFakeSpdySession(session->spdy_session_pool(), key)); |
CapturePreconnectsTransportSocketPool* transport_conn_pool = |
@@ -661,13 +661,13 @@ |
// Set an existing SpdySession in the pool. |
HostPortPair host_port_pair("www.google.com", 443); |
SpdySessionKey key(host_port_pair, ProxyServer::Direct(), |
- PRIVACY_MODE_ENABLED); |
+ kPrivacyModeEnabled); |
HttpRequestInfo request_info; |
request_info.method = "GET"; |
request_info.url = GURL("https://www.google.com"); |
request_info.load_flags = 0; |
- request_info.privacy_mode = PRIVACY_MODE_DISABLED; |
+ request_info.privacy_mode = kPrivacyModeDisabled; |
SSLConfig ssl_config; |
StreamRequestWaiter waiter; |
@@ -720,7 +720,7 @@ |
request_info.method = "GET"; |
request_info.url = GURL("https://www.google.com"); |
request_info.load_flags = 0; |
- request_info.privacy_mode = PRIVACY_MODE_DISABLED; |
+ request_info.privacy_mode = kPrivacyModeDisabled; |
SSLConfig ssl_config; |
StreamRequestWaiter waiter; |
@@ -741,7 +741,7 @@ |
EXPECT_EQ(GetSocketPoolGroupCount(ssl_pool), 1); |
- request_info.privacy_mode = PRIVACY_MODE_ENABLED; |
+ request_info.privacy_mode = kPrivacyModeEnabled; |
scoped_ptr<HttpStreamRequest> request3( |
session->http_stream_factory()->RequestStream( |
request_info, DEFAULT_PRIORITY, ssl_config, ssl_config, |