Index: net/http/http_stream_factory_impl_job.cc |
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc |
index 9fd44734269920abbad43e0f3433454d74f37d36..9feb3b7646c7667af9d1bc84029f70f0a839cea4 100644 |
--- a/net/http/http_stream_factory_impl_job.cc |
+++ b/net/http/http_stream_factory_impl_job.cc |
@@ -1097,7 +1097,7 @@ int HttpStreamFactoryImpl::Job::DoCreateStream() { |
// We never use privacy mode for connection to proxy server. |
spdy_session_key = SpdySessionKey(proxy_server.host_port_pair(), |
ProxyServer::Direct(), |
- kPrivacyModeDisabled); |
+ PRIVACY_MODE_DISABLED); |
direct = false; |
} |
@@ -1283,7 +1283,7 @@ void HttpStreamFactoryImpl::Job::InitSSLConfig( |
ssl_config->verify_ev_cert = true; |
// Disable Channel ID if privacy mode is enabled. |
- if (request_info_.privacy_mode == kPrivacyModeEnabled) |
+ if (request_info_.privacy_mode == PRIVACY_MODE_ENABLED) |
ssl_config->channel_id_enabled = false; |
} |