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

Unified Diff: chrome/browser/enumerate_modules_model_win.cc

Issue 1279123004: Replace ToLower calls to the new format (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: chrome/browser/enumerate_modules_model_win.cc
diff --git a/chrome/browser/enumerate_modules_model_win.cc b/chrome/browser/enumerate_modules_model_win.cc
index 6786fb322209e0b839470f6b32b60a714b015b6c..a940c2eeb1bfcff301caf188e679ac20aad9c9d3 100644
--- a/chrome/browser/enumerate_modules_model_win.cc
+++ b/chrome/browser/enumerate_modules_model_win.cc
@@ -349,7 +349,7 @@ static void GenerateHash(const std::string& input, std::string* output) {
uint8 hash[4];
crypto::SHA256HashString(input, hash, sizeof(hash));
- *output = base::StringToLowerASCII(base::HexEncode(hash, sizeof(hash)));
+ *output = base::ToLowerASCII(base::HexEncode(hash, sizeof(hash)));
}
// -----------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698