| Index: google_apis/gaia/oauth2_revocation_fetcher.cc
|
| diff --git a/google_apis/gaia/oauth2_revocation_fetcher.cc b/google_apis/gaia/oauth2_revocation_fetcher.cc
|
| index f5c7df12e6db9073bbc1ffd05d807e670f8cd537..eeec2137ff6627f04dcc9794c5d4e88d6da6f775 100644
|
| --- a/google_apis/gaia/oauth2_revocation_fetcher.cc
|
| +++ b/google_apis/gaia/oauth2_revocation_fetcher.cc
|
| @@ -154,7 +154,7 @@ GURL OAuth2RevocationFetcher::MakeRevocationUrl() {
|
| // static
|
| std::string OAuth2RevocationFetcher::MakeRevocationHeader(
|
| const std::string& access_token) {
|
| - return StringPrintf(kAuthorizationHeaderFormat, access_token.c_str());
|
| + return base::StringPrintf(kAuthorizationHeaderFormat, access_token.c_str());
|
| }
|
|
|
| // static
|
| @@ -163,7 +163,7 @@ std::string OAuth2RevocationFetcher::MakeRevocationBody(
|
| const std::string& origin) {
|
| std::string enc_client_id = net::EscapeUrlEncodedData(client_id, true);
|
| std::string enc_origin = net::EscapeUrlEncodedData(origin, true);
|
| - return StringPrintf(
|
| + return base::StringPrintf(
|
| kRevocationBodyFormat,
|
| enc_client_id.c_str(),
|
| enc_origin.c_str());
|
|
|