Home
last modified time | relevance | path

Searched refs:proto_bytes (Results 1 – 2 of 2) sorted by relevance

/external/chromium/chrome/browser/sync/engine/
Dsyncer_proto_util.cc306 void SyncerProtoUtil::CopyProtoBytesIntoBlob(const std::string& proto_bytes, in CopyProtoBytesIntoBlob() argument
308 syncable::Blob proto_blob(proto_bytes.begin(), proto_bytes.end()); in CopyProtoBytesIntoBlob()
313 bool SyncerProtoUtil::ProtoBytesEqualsBlob(const std::string& proto_bytes, in ProtoBytesEqualsBlob() argument
315 if (proto_bytes.size() != blob.size()) in ProtoBytesEqualsBlob()
317 return std::equal(proto_bytes.begin(), proto_bytes.end(), blob.begin()); in ProtoBytesEqualsBlob()
322 std::string* proto_bytes) { in CopyBlobIntoProtoBytes() argument
324 proto_bytes->swap(blob_string); in CopyBlobIntoProtoBytes()
Dsyncer_proto_util.h62 static void CopyProtoBytesIntoBlob(const std::string& proto_bytes,
64 static bool ProtoBytesEqualsBlob(const std::string& proto_bytes,
67 std::string* proto_bytes);