| Index: net/socket/ssl_client_socket_pool.cc
 | 
| diff --git a/net/socket/ssl_client_socket_pool.cc b/net/socket/ssl_client_socket_pool.cc
 | 
| index 388e3fe97a0ef3217dbd0369f4c4a11f1c404295..2cc50e07df34f488957e0fa02eb7f2356a6ec88c 100644
 | 
| --- a/net/socket/ssl_client_socket_pool.cc
 | 
| +++ b/net/socket/ssl_client_socket_pool.cc
 | 
| @@ -46,15 +46,15 @@
 | 
|        force_spdy_over_ssl_(force_spdy_over_ssl),
 | 
|        want_spdy_over_npn_(want_spdy_over_npn),
 | 
|        ignore_limits_(false) {
 | 
| -  if (direct_params_.get()) {
 | 
| -    DCHECK(!socks_proxy_params_.get());
 | 
| -    DCHECK(!http_proxy_params_.get());
 | 
| +  if (direct_params_) {
 | 
| +    DCHECK(!socks_proxy_params_);
 | 
| +    DCHECK(!http_proxy_params_);
 | 
|      ignore_limits_ = direct_params_->ignore_limits();
 | 
| -  } else if (socks_proxy_params_.get()) {
 | 
| -    DCHECK(!http_proxy_params_.get());
 | 
| +  } else if (socks_proxy_params_) {
 | 
| +    DCHECK(!http_proxy_params_);
 | 
|      ignore_limits_ = socks_proxy_params_->ignore_limits();
 | 
|    } else {
 | 
| -    DCHECK(http_proxy_params_.get());
 | 
| +    DCHECK(http_proxy_params_);
 | 
|      ignore_limits_ = http_proxy_params_->ignore_limits();
 | 
|    }
 | 
|  }
 | 
| @@ -62,18 +62,18 @@
 | 
|  SSLSocketParams::~SSLSocketParams() {}
 | 
|  
 | 
|  SSLSocketParams::ConnectionType SSLSocketParams::GetConnectionType() const {
 | 
| -  if (direct_params_.get()) {
 | 
| -    DCHECK(!socks_proxy_params_.get());
 | 
| -    DCHECK(!http_proxy_params_.get());
 | 
| +  if (direct_params_) {
 | 
| +    DCHECK(!socks_proxy_params_);
 | 
| +    DCHECK(!http_proxy_params_);
 | 
|      return DIRECT;
 | 
|    }
 | 
|  
 | 
| -  if (socks_proxy_params_.get()) {
 | 
| -    DCHECK(!http_proxy_params_.get());
 | 
| +  if (socks_proxy_params_) {
 | 
| +    DCHECK(!http_proxy_params_);
 | 
|      return SOCKS_PROXY;
 | 
|    }
 | 
|  
 | 
| -  DCHECK(http_proxy_params_.get());
 | 
| +  DCHECK(http_proxy_params_);
 | 
|    return HTTP_PROXY;
 | 
|  }
 | 
|  
 | 
| 
 |