| Index: net/proxy/proxy_server.cc
|
| diff --git a/net/proxy/proxy_server.cc b/net/proxy/proxy_server.cc
|
| index 09c2538e559b5087e21592634b67ae93097726da..d74a89f0bdf33e302035b95a5faf27a0ca2035d1 100644
|
| --- a/net/proxy/proxy_server.cc
|
| +++ b/net/proxy/proxy_server.cc
|
| @@ -88,7 +88,8 @@ ProxyServer::ProxyServer(Scheme scheme, const HostPortPair& host_port_pair)
|
| const HostPortPair& ProxyServer::host_port_pair() const {
|
| // Doesn't make sense to call this if the URI scheme doesn't
|
| // have concept of a host.
|
| - DCHECK(is_valid() && !is_direct());
|
| + DCHECK(is_valid());
|
| + DCHECK(!is_direct());
|
| return host_port_pair_;
|
| }
|
|
|
|
|