Index: net/quic/quic_session_key.cc |
diff --git a/net/quic/quic_session_key.cc b/net/quic/quic_session_key.cc |
index 8ffd52490a95a484ebccc1f489117c3a45ead7be..2dc41657b1ed15fa2c7259e7dc17e7680f7460c3 100644 |
--- a/net/quic/quic_session_key.cc |
+++ b/net/quic/quic_session_key.cc |
@@ -45,7 +45,7 @@ bool QuicSessionKey::operator==(const QuicSessionKey& other) const { |
string QuicSessionKey::ToString() const { |
return (is_https_ ? "https://" : "http://") + host_port_pair_.ToString() + |
- (privacy_mode_ == kPrivacyModeEnabled ? "/private" : ""); |
+ (privacy_mode_ == PRIVACY_MODE_ENABLED ? "/private" : ""); |
} |
} // namespace net |