HomeSort by relevance Sort by last modified time
    Searched defs:sync_entity (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/sync/test/fake_server/
tombstone_entity.cc 36 sync_pb::SyncEntity* sync_entity = new sync_pb::SyncEntity(); local
37 FakeServerEntity::SerializeBaseProtoFields(sync_entity);
39 sync_pb::EntitySpecifics* specifics = sync_entity->mutable_specifics();
42 return sync_entity;
unique_client_entity.cc 83 sync_pb::SyncEntity* sync_entity = new sync_pb::SyncEntity(); local
84 FakeServerEntity::SerializeBaseProtoFields(sync_entity);
86 sync_pb::EntitySpecifics* specifics = sync_entity->mutable_specifics();
89 sync_entity->set_parent_id_string(parent_id_);
90 sync_entity->set_client_defined_unique_tag(client_defined_unique_tag_);
91 sync_entity->set_ctime(creation_time_);
92 sync_entity->set_mtime(last_modified_time_);
94 return sync_entity;
bookmark_entity.cc 112 sync_pb::SyncEntity* sync_entity = new sync_pb::SyncEntity(); local
113 FakeServerEntity::SerializeBaseProtoFields(sync_entity);
115 sync_pb::EntitySpecifics* specifics = sync_entity->mutable_specifics();
118 sync_entity->set_originator_cache_guid(originator_cache_guid_);
119 sync_entity->set_originator_client_item_id(originator_client_item_id_);
121 sync_entity->set_parent_id_string(parent_id_);
122 sync_entity->set_ctime(creation_time_);
123 sync_entity->set_mtime(last_modified_time_);
126 sync_entity->mutable_unique_position();
129 return sync_entity;
    [all...]
permanent_entity.cc 102 sync_pb::SyncEntity* sync_entity = new sync_pb::SyncEntity(); local
103 FakeServerEntity::SerializeBaseProtoFields(sync_entity);
105 sync_pb::EntitySpecifics* specifics = sync_entity->mutable_specifics();
108 sync_entity->set_parent_id_string(parent_id_);
109 sync_entity->set_server_defined_unique_tag(server_defined_unique_tag_);
111 return sync_entity;

Completed in 167 milliseconds