| Index: net/spdy/spdy_session_key.cc
|
| diff --git a/net/spdy/spdy_session_key.cc b/net/spdy/spdy_session_key.cc
|
| index 3ef95de5c3ab1dea27dfa66a381e139d8bbe8d7c..851df556da6d1e3e6281429f70314376c5216659 100644
|
| --- a/net/spdy/spdy_session_key.cc
|
| +++ b/net/spdy/spdy_session_key.cc
|
| @@ -17,20 +17,20 @@ SpdySessionKey::SpdySessionKey(const HostPortPair& host_port_pair,
|
| : host_port_proxy_pair_(host_port_pair, proxy_server),
|
| privacy_mode_(privacy_mode) {
|
| DVLOG(1) << "SpdySessionKey(host=" << host_port_pair.ToString()
|
| - << ", proxy=" << proxy_server.ToURI()
|
| - << ", privacy=" << privacy_mode;
|
| + << ", proxy=" << proxy_server.ToURI()
|
| + << ", privacy=" << privacy_mode;
|
| }
|
|
|
| SpdySessionKey::SpdySessionKey(const HostPortProxyPair& host_port_proxy_pair,
|
| PrivacyMode privacy_mode)
|
| - : host_port_proxy_pair_(host_port_proxy_pair),
|
| - privacy_mode_(privacy_mode) {
|
| + : host_port_proxy_pair_(host_port_proxy_pair), privacy_mode_(privacy_mode) {
|
| DVLOG(1) << "SpdySessionKey(hppp=" << host_port_proxy_pair.first.ToString()
|
| - << "," << host_port_proxy_pair.second.ToURI()
|
| - << ", privacy=" << privacy_mode;
|
| + << "," << host_port_proxy_pair.second.ToURI()
|
| + << ", privacy=" << privacy_mode;
|
| }
|
|
|
| -SpdySessionKey::~SpdySessionKey() {}
|
| +SpdySessionKey::~SpdySessionKey() {
|
| +}
|
|
|
| bool SpdySessionKey::operator<(const SpdySessionKey& other) const {
|
| if (privacy_mode_ != other.privacy_mode_)
|
| @@ -42,9 +42,9 @@ bool SpdySessionKey::operator<(const SpdySessionKey& other) const {
|
|
|
| bool SpdySessionKey::Equals(const SpdySessionKey& other) const {
|
| return privacy_mode_ == other.privacy_mode_ &&
|
| - host_port_proxy_pair_.first.Equals(other.host_port_proxy_pair_.first) &&
|
| - host_port_proxy_pair_.second == other.host_port_proxy_pair_.second;
|
| + host_port_proxy_pair_.first.Equals(
|
| + other.host_port_proxy_pair_.first) &&
|
| + host_port_proxy_pair_.second == other.host_port_proxy_pair_.second;
|
| }
|
|
|
| } // namespace net
|
| -
|
|
|