| Index: net/http/http_auth.cc
|
| diff --git a/net/http/http_auth.cc b/net/http/http_auth.cc
|
| index 2e42b064a4fd707a087fa31dc327ce6c8febe706..47a13be28b6b931786c365178260676f09666fa6 100644
|
| --- a/net/http/http_auth.cc
|
| +++ b/net/http/http_auth.cc
|
| @@ -86,6 +86,18 @@ HttpAuth::AuthorizationResult HttpAuth::HandleChallengeResponse(
|
| return HttpAuth::AUTHORIZATION_RESULT_REJECT;
|
| }
|
|
|
| +HttpAuth::ChallengeTokenizer::ChallengeTokenizer(
|
| + std::string::const_iterator begin,
|
| + std::string::const_iterator end)
|
| + : begin_(begin),
|
| + end_(end),
|
| + scheme_begin_(begin),
|
| + scheme_end_(begin),
|
| + params_begin_(end),
|
| + params_end_(end) {
|
| + Init(begin, end);
|
| +}
|
| +
|
| HttpUtil::NameValuePairsIterator HttpAuth::ChallengeTokenizer::param_pairs()
|
| const {
|
| return HttpUtil::NameValuePairsIterator(params_begin_, params_end_, ',');
|
|
|