summaryrefslogtreecommitdiffstats
path: root/components/update_client
diff options
context:
space:
mode:
Diffstat (limited to 'components/update_client')
-rw-r--r--components/update_client/utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/update_client/utils.cc b/components/update_client/utils.cc
index 11e8060..2b66050 100644
--- a/components/update_client/utils.cc
+++ b/components/update_client/utils.cc
@@ -188,7 +188,7 @@ bool DeleteFileAndEmptyParentDirectory(const base::FilePath& filepath) {
std::string GetCrxComponentID(const CrxComponent& component) {
const size_t kCrxIdSize = 16;
CHECK_GE(component.pk_hash.size(), kCrxIdSize);
- return HexStringToID(base::StringToLowerASCII(
+ return HexStringToID(base::ToLowerASCII(
base::HexEncode(&component.pk_hash[0], kCrxIdSize)));
}