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

Unified Diff: sync/internal_api/public/base/attachment_id_proto.cc

Issue 1282363003: Convert remaining StringToLowerASCII to ToLowerASCII (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: sync/internal_api/public/base/attachment_id_proto.cc
diff --git a/sync/internal_api/public/base/attachment_id_proto.cc b/sync/internal_api/public/base/attachment_id_proto.cc
index 6692ab70dc77d5bc0411a2222028b85e215ebcf2..b457fc6fad9e763385369529c1ebabc8ef42735a 100644
--- a/sync/internal_api/public/base/attachment_id_proto.cc
+++ b/sync/internal_api/public/base/attachment_id_proto.cc
@@ -13,7 +13,7 @@ namespace syncer {
sync_pb::AttachmentIdProto CreateAttachmentIdProto(size_t size,
uint32_t crc32c) {
sync_pb::AttachmentIdProto proto;
- std::string guid = base::StringToLowerASCII(base::GenerateGUID());
+ std::string guid = base::ToLowerASCII(base::GenerateGUID());
DCHECK(!guid.empty());
// Requirements are that this id must be a unique RFC4122 UUID, formatted in
// lower case.
« no previous file with comments | « storage/common/database/database_identifier.cc ('k') | sync/internal_api/public/base/attachment_id_proto_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698