diff options
Diffstat (limited to 'net/http/http_auth_multi_round_parse.cc')
-rw-r--r-- | net/http/http_auth_multi_round_parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_auth_multi_round_parse.cc b/net/http/http_auth_multi_round_parse.cc index efee2bb..1d0edac 100644 --- a/net/http/http_auth_multi_round_parse.cc +++ b/net/http/http_auth_multi_round_parse.cc @@ -17,7 +17,7 @@ bool SchemeIsValid(const std::string& scheme, // There is no guarantee that challenge->scheme() is valid ASCII, but // LowerCaseEqualsASCII will do the right thing even if it isn't. return base::LowerCaseEqualsASCII(challenge->scheme(), - base::StringToLowerASCII(scheme).c_str()); + base::ToLowerASCII(scheme)); } } // namespace |