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

Unified Diff: chrome/browser/extensions/install_signer.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
Index: chrome/browser/extensions/install_signer.cc
diff --git a/chrome/browser/extensions/install_signer.cc b/chrome/browser/extensions/install_signer.cc
index 7214343bb6b3b7142cf7e4b4b30f03f205924a0e..8ec39e52f0ff38db1543bda83a09562b6f066d15 100644
--- a/chrome/browser/extensions/install_signer.cc
+++ b/chrome/browser/extensions/install_signer.cc
@@ -108,7 +108,7 @@ bool ValidateExpireDateFormat(const std::string& input) {
if (i == 4 || i == 7) {
if (input[i] != '-')
return false;
- } else if (!IsAsciiDigit(input[i])) {
+ } else if (!base::IsAsciiDigit(input[i])) {
return false;
}
}
« no previous file with comments | « chrome/browser/chromeos/drive/file_system_util.cc ('k') | chrome/browser/install_verification/win/module_ids.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698