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

Unified Diff: chrome/app/signature_validator_win.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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/app/chrome_main_delegate.cc ('k') | chrome/app/signature_validator_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/signature_validator_win.cc
diff --git a/chrome/app/signature_validator_win.cc b/chrome/app/signature_validator_win.cc
index ab93a4f2e96ce9c94b9c790cd574d18bd0fa1f2c..75efe259f0c9a35aaee5aea075ae4b00a298578a 100644
--- a/chrome/app/signature_validator_win.cc
+++ b/chrome/app/signature_validator_win.cc
@@ -39,7 +39,8 @@ bool ExtractPublicKeyHash(const CERT_CONTEXT* cert_context,
crypt_blob.pbData), crypt_blob.cbData);
crypto::SHA256HashString(key_bytes, hash, crypto::kSHA256Length);
- *public_key_hash = StringToLowerASCII(base::HexEncode(hash, arraysize(hash)));
+ *public_key_hash =
+ base::StringToLowerASCII(base::HexEncode(hash, arraysize(hash)));
return true;
}
« no previous file with comments | « chrome/app/chrome_main_delegate.cc ('k') | chrome/app/signature_validator_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698