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

Side by Side Diff: sync/internal_api/public/base/attachment_id_proto.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sql/statement.cc ('k') | sync/internal_api/public/base/attachment_id_proto_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "sync/internal_api/public/base/attachment_id_proto.h" 5 #include "sync/internal_api/public/base/attachment_id_proto.h"
6 6
7 #include "base/guid.h" 7 #include "base/guid.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
10 10
11 namespace syncer { 11 namespace syncer {
12 12
13 sync_pb::AttachmentIdProto CreateAttachmentIdProto() { 13 sync_pb::AttachmentIdProto CreateAttachmentIdProto() {
14 sync_pb::AttachmentIdProto proto; 14 sync_pb::AttachmentIdProto proto;
15 std::string guid = StringToLowerASCII(base::GenerateGUID()); 15 std::string guid = base::StringToLowerASCII(base::GenerateGUID());
16 DCHECK(!guid.empty()); 16 DCHECK(!guid.empty());
17 // Requirements are that this id must be a unique RFC4122 UUID, formatted in 17 // Requirements are that this id must be a unique RFC4122 UUID, formatted in
18 // lower case. 18 // lower case.
19 proto.set_unique_id(guid); 19 proto.set_unique_id(guid);
20 return proto; 20 return proto;
21 } 21 }
22 22
23 sync_pb::AttachmentMetadata CreateAttachmentMetadata( 23 sync_pb::AttachmentMetadata CreateAttachmentMetadata(
24 const google::protobuf::RepeatedPtrField<sync_pb::AttachmentIdProto>& ids) { 24 const google::protobuf::RepeatedPtrField<sync_pb::AttachmentIdProto>& ids) {
25 sync_pb::AttachmentMetadata result; 25 sync_pb::AttachmentMetadata result;
26 for (int i = 0; i < ids.size(); ++i) { 26 for (int i = 0; i < ids.size(); ++i) {
27 sync_pb::AttachmentMetadataRecord* record = result.add_record(); 27 sync_pb::AttachmentMetadataRecord* record = result.add_record();
28 *record->mutable_id() = ids.Get(i); 28 *record->mutable_id() = ids.Get(i);
29 record->set_is_on_server(true); 29 record->set_is_on_server(true);
30 } 30 }
31 return result; 31 return result;
32 } 32 }
33 33
34 } // namespace syncer 34 } // namespace syncer
OLDNEW
« no previous file with comments | « sql/statement.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