HomeSort by relevance Sort by last modified time
    Searched refs:attachment_ids (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/sync/api/attachments/
attachment_service_impl_unittest.cc 180 AttachmentIdList attachment_ids; local
181 attachment_service()->GetOrDownloadAttachments(attachment_ids,
191 AttachmentIdList attachment_ids; local
192 attachment_ids.push_back(AttachmentId::Create());
193 attachment_service()->GetOrDownloadAttachments(attachment_ids,
196 local_attachments.insert(attachment_ids[0]);
202 EXPECT_TRUE(last_download_attachments()->find(attachment_ids[0]) !=
208 AttachmentIdList attachment_ids; local
209 attachment_ids.push_back(AttachmentId::Create());
210 attachment_ids.push_back(AttachmentId::Create())
    [all...]
attachment_service_proxy.h 57 const AttachmentIdList& attachment_ids,
59 virtual void DropAttachments(const AttachmentIdList& attachment_ids,
89 const AttachmentIdList& attachment_ids,
91 virtual void DropAttachments(const AttachmentIdList& attachment_ids,
attachment_service.h 75 const AttachmentIdList& attachment_ids,
79 virtual void DropAttachments(const AttachmentIdList& attachment_ids,
attachment_service_proxy.cc 71 const AttachmentIdList& attachment_ids,
80 attachment_ids,
85 const AttachmentIdList& attachment_ids,
93 attachment_ids,
138 const AttachmentIdList& attachment_ids,
143 wrapped_->GetOrDownloadAttachments(attachment_ids, callback);
147 const AttachmentIdList& attachment_ids,
152 wrapped_->DropAttachments(attachment_ids, callback);
attachment_service_impl.cc 25 // |attachment_ids| is a list of attachmens to retrieve.
28 GetOrDownloadState(const AttachmentIdList& attachment_ids,
58 const AttachmentIdList& attachment_ids,
62 attachment_ids.begin(),
63 attachment_ids.end(),
145 const AttachmentIdList& attachment_ids,
149 new GetOrDownloadState(attachment_ids, callback));
150 attachment_store_->Read(attachment_ids,
157 const AttachmentIdList& attachment_ids,
160 attachment_store_->Drop(attachment_ids,
    [all...]
attachment_service_impl.h 37 virtual void GetOrDownloadAttachments(const AttachmentIdList& attachment_ids,
40 virtual void DropAttachments(const AttachmentIdList& attachment_ids,
attachment_service_proxy_unittest.cc 38 virtual void GetOrDownloadAttachments(const AttachmentIdList& attachment_ids,
51 virtual void DropAttachments(const AttachmentIdList& attachment_ids,
  /external/chromium_org/sync/api/
sync_data.cc 142 const AttachmentIdList& attachment_ids,
147 std::transform(attachment_ids.begin(),
148 attachment_ids.end(),
242 const AttachmentIdList& attachment_ids,
244 attachment_service_.GetOrDownloadAttachments(attachment_ids, callback);
248 const AttachmentIdList& attachment_ids,
250 attachment_service_.DropAttachments(attachment_ids, callback);
sync_data.h 77 const AttachmentIdList& attachment_ids,
187 // Retrieve the attachments indentified by |attachment_ids|. Invoke
197 const AttachmentIdList& attachment_ids,
201 // SyncData specified in |attachment_ids|. This method will not delete
206 void DropAttachments(const AttachmentIdList& attachment_ids,
sync_data_unittest.cc 88 AttachmentIdList attachment_ids = data.GetAttachmentIds(); local
89 EXPECT_EQ(3U, attachment_ids.size());
  /external/chromium_org/components/sync_driver/
generic_change_processor.cc 48 // Replace |write_nodes|'s attachment ids with |attachment_ids|.
49 void SetAttachmentMetadata(const syncer::AttachmentIdList& attachment_ids,
54 attachment_ids.begin(),
55 attachment_ids.end(),
65 const syncer::AttachmentIdList& attachment_ids = read_node.GetAttachmentIds(); local
72 attachment_ids,
84 attachment_ids,
561 syncer::AttachmentIdList attachment_ids = sync_data_local.GetAttachmentIds(); local
562 SetAttachmentMetadata(attachment_ids, sync_node);
generic_change_processor_unittest.cc 415 syncer::AttachmentIdList attachment_ids = node.GetAttachmentIds(); local
416 EXPECT_EQ(1U, attachment_ids.size());

Completed in 1357 milliseconds