summaryrefslogtreecommitdiffstats
path: root/google_apis
diff options
context:
space:
mode:
Diffstat (limited to 'google_apis')
-rw-r--r--google_apis/gaia/gaia_auth_fetcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/google_apis/gaia/gaia_auth_fetcher.cc b/google_apis/gaia/gaia_auth_fetcher.cc
index 3d7e563..b0046d5 100644
--- a/google_apis/gaia/gaia_auth_fetcher.cc
+++ b/google_apis/gaia/gaia_auth_fetcher.cc
@@ -34,7 +34,7 @@ static bool CookiePartsContains(const std::vector<std::string>& parts,
const char* part) {
for (std::vector<std::string>::const_iterator it = parts.begin();
it != parts.end(); ++it) {
- if (base::LowerCaseEqualsASCII(*it, part))
+ if (LowerCaseEqualsASCII(*it, part))
return true;
}
return false;