| Index: google_apis/gaia/oauth_request_signer.cc
|
| diff --git a/google_apis/gaia/oauth_request_signer.cc b/google_apis/gaia/oauth_request_signer.cc
|
| index 115c14d6f01f8c1f8ed43f4956abfa4d8af8daa3..2772c041cebee1fecb0571c7a5d373935ceb2c6d 100644
|
| --- a/google_apis/gaia/oauth_request_signer.cc
|
| +++ b/google_apis/gaia/oauth_request_signer.cc
|
| @@ -322,7 +322,7 @@ bool OAuthRequestSigner::Decode(const std::string& text,
|
| DCHECK(low >= 0 || low < kHexBase);
|
|
|
| char decoded = static_cast<char>(high * kHexBase + low);
|
| - DCHECK(!(IsAsciiAlpha(decoded) || IsAsciiDigit(decoded)));
|
| + DCHECK(!(base::IsAsciiAlpha(decoded) || base::IsAsciiDigit(decoded)));
|
| DCHECK(!(decoded && strchr("-._~", decoded)));
|
| accumulator += decoded;
|
| } else {
|
| @@ -340,7 +340,7 @@ std::string OAuthRequestSigner::Encode(const std::string& text) {
|
| std::string::const_iterator limit;
|
| for (limit = text.end(), cursor = text.begin(); cursor != limit; ++cursor) {
|
| char character = *cursor;
|
| - if (IsAsciiAlpha(character) || IsAsciiDigit(character)) {
|
| + if (base::IsAsciiAlpha(character) || base::IsAsciiDigit(character)) {
|
| result += character;
|
| } else {
|
| switch (character) {
|
|
|