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

Unified Diff: chrome/browser/install_verification/win/module_ids.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/extensions/install_signer.cc ('k') | chrome/browser/internal_auth.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/install_verification/win/module_ids.cc
diff --git a/chrome/browser/install_verification/win/module_ids.cc b/chrome/browser/install_verification/win/module_ids.cc
index e499fdcfd02b3b91899b47ab306cfc5e370be33e..109c3c3b53076fa02a81e4aebf161ffdb5b350fc 100644
--- a/chrome/browser/install_verification/win/module_ids.cc
+++ b/chrome/browser/install_verification/win/module_ids.cc
@@ -54,7 +54,7 @@ void ParseAdditionalModuleID(
for (base::StringPiece::const_iterator it = digest_piece.begin();
it != digest_piece.end(); ++it) {
- if (!IsHexDigit(*it))
+ if (!base::IsHexDigit(*it))
return; // Second token has invalid characters.
}
« no previous file with comments | « chrome/browser/extensions/install_signer.cc ('k') | chrome/browser/internal_auth.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698