Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6439)

Unified Diff: chrome/browser/profile_resetter/jtl_foundation.cc

Issue 1200053004: Move more string_util functions to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/internal_auth.cc ('k') | chrome/browser/shell_integration_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profile_resetter/jtl_foundation.cc
diff --git a/chrome/browser/profile_resetter/jtl_foundation.cc b/chrome/browser/profile_resetter/jtl_foundation.cc
index 0739040cc5e0d2abd1e50ac0082bafb75ef445d6..a2a2007edc17d6baab1629c16798f7266be43e9e 100644
--- a/chrome/browser/profile_resetter/jtl_foundation.cc
+++ b/chrome/browser/profile_resetter/jtl_foundation.cc
@@ -39,7 +39,7 @@ bool Hasher::IsHash(const std::string& maybe_hash) {
return false;
for (std::string::const_iterator it = maybe_hash.begin();
it != maybe_hash.end(); ++it) {
- if (!IsHexDigit(*it))
+ if (!base::IsHexDigit(*it))
return false;
}
return true;
« no previous file with comments | « chrome/browser/internal_auth.cc ('k') | chrome/browser/shell_integration_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698