| Index: trunk/src/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc
|
| ===================================================================
|
| --- trunk/src/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc (revision 273823)
|
| +++ trunk/src/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.cc (working copy)
|
| @@ -35,7 +35,6 @@
|
|
|
| DataReductionProxyAuthRequestHandler::DataReductionProxyAuthRequestHandler(
|
| DataReductionProxySettings* settings) : settings_(settings) {
|
| - DCHECK(settings);
|
| }
|
|
|
| DataReductionProxyAuthRequestHandler::~DataReductionProxyAuthRequestHandler() {
|
| @@ -105,7 +104,7 @@
|
|
|
| bool DataReductionProxyAuthRequestHandler::IsAcceptableAuthChallenge(
|
| net::AuthChallengeInfo* auth_info) {
|
| - return settings_->IsAcceptableAuthChallenge(auth_info);
|
| + return DataReductionProxySettings::IsAcceptableAuthChallenge(auth_info);
|
| }
|
|
|
| base::string16 DataReductionProxyAuthRequestHandler::GetTokenForAuthChallenge(
|
|
|