/external/chromium_org/sync/api/attachments/ |
attachment_id.cc | 13 void AttachmentId::ImmutableAttachmentIdProtoTraits::InitializeWrapper( 18 void AttachmentId::ImmutableAttachmentIdProtoTraits::DestroyWrapper( 24 AttachmentId::ImmutableAttachmentIdProtoTraits::Unwrap(const Wrapper& wrapper) { 29 AttachmentId::ImmutableAttachmentIdProtoTraits::UnwrapMutable( 34 void AttachmentId::ImmutableAttachmentIdProtoTraits::Swap( 40 AttachmentId::~AttachmentId() {} 42 bool AttachmentId::operator==(const AttachmentId& other) const { 46 bool AttachmentId::operator!=(const AttachmentId& other) const [all...] |
attachment_id_unittest.cc | 20 AttachmentId id1 = AttachmentId::Create(); 21 AttachmentId id2 = AttachmentId::Create(); 26 AttachmentId id1 = AttachmentId::Create(); 27 AttachmentId id2(id1); 32 AttachmentId id1 = AttachmentId::Create(); 35 AttachmentId id2 = AttachmentId::Create() [all...] |
attachment_id.h | 25 class SYNC_EXPORT AttachmentId { 27 ~AttachmentId(); 31 bool operator==(const AttachmentId& other) const; 33 bool operator!=(const AttachmentId& other) const; 35 // Needed for using AttachmentId as key in std::map. 36 bool operator<(const AttachmentId& other) const; 39 static AttachmentId Create(); 42 static AttachmentId CreateFromProto(const sync_pb::AttachmentIdProto& proto); 65 AttachmentId(sync_pb::AttachmentIdProto* proto); 68 typedef std::vector<AttachmentId> AttachmentIdList [all...] |
attachment.h | 42 const AttachmentId& id, 46 const AttachmentId& GetId() const; 52 AttachmentId id_; 55 Attachment(const AttachmentId& id, 60 typedef std::map<AttachmentId, Attachment> AttachmentMap;
|
attachment.cc | 16 return CreateWithId(AttachmentId::Create(), data); 21 const AttachmentId& id, 26 const AttachmentId& Attachment::GetId() const { return id_; } 32 Attachment::Attachment(const AttachmentId& id,
|
attachment_store.h | 22 class AttachmentId;
|
fake_attachment_store.h | 22 class AttachmentId;
|
attachment_unittest.cc | 40 AttachmentId id = AttachmentId::Create();
|
/external/chromium_org/sync/internal_api/public/attachments/ |
fake_attachment_downloader.h | 22 virtual void DownloadAttachment(const AttachmentId& attachment_id,
|
attachment_uploader.h | 27 typedef base::Callback<void(const UploadResult&, const AttachmentId&)> 38 // |callback| will receive an UploadResult code and the AttachmentId of the
|
attachment_service_impl.h | 90 const AttachmentId& attachment_id); 92 const AttachmentId& attachment_id, 95 void BeginUpload(const AttachmentId& attachment_id); 112 scoped_ptr<TaskQueue<AttachmentId> > upload_task_queue_;
|
attachment_downloader.h | 41 virtual void DownloadAttachment(const AttachmentId& attachment_id,
|
attachment_service.h | 58 virtual void OnAttachmentUploaded(const AttachmentId& attachment_id) = 0;
|
attachment_uploader_impl.h | 51 const AttachmentId& attachment_id);
|
/external/chromium_org/sync/internal_api/attachments/ |
attachment_downloader_impl_unittest.cc | 138 typedef std::map<AttachmentId, AttachmentDownloader::DownloadResult> 153 const AttachmentId& id) { 161 void DownloadDone(const AttachmentId& attachment_id, 165 void VerifyDownloadResult(const AttachmentId& attachment_id, 223 const AttachmentId& attachment_id, 243 const AttachmentId& attachment_id, 256 AttachmentId id1 = AttachmentId::Create(); 271 AttachmentId id1 = AttachmentId::Create() [all...] |
fake_attachment_downloader_unittest.cc | 53 AttachmentId attachment_id = AttachmentId::Create();
|
fake_attachment_uploader.cc | 28 AttachmentId id = attachment.GetId();
|
fake_attachment_downloader.cc | 20 const AttachmentId& attachment_id,
|
attachment_service_impl_unittest.cc | 100 virtual void DownloadAttachment(const AttachmentId& id, 108 void RespondToDownload(const AttachmentId& id, const DownloadResult& result) { 122 std::map<AttachmentId, DownloadCallback> download_requests; 136 const AttachmentId id = attachment.GetId(); 141 void RespondToUpload(const AttachmentId& id, const UploadResult& result) { 148 std::map<AttachmentId, UploadCallback> upload_requests; 174 const AttachmentId& attachment_id) OVERRIDE { 257 const std::vector<AttachmentId>& on_attachment_uploaded_list() const { 272 std::vector<AttachmentId> on_attachment_uploaded_list_; 292 attachment_ids.push_back(AttachmentId::Create()) [all...] |
fake_attachment_uploader_unittest.cc | 38 const AttachmentId& ignored) {
|
attachment_uploader_impl_unittest.cc | 191 std::vector<AttachmentId>& attachment_ids(); 199 const AttachmentId& attachment_id); 211 std::vector<AttachmentId> attachment_ids_; 318 std::vector<AttachmentId>& 337 const AttachmentId& attachment_id) { 382 AttachmentId id = AttachmentId::Create(); 391 AttachmentId id = AttachmentId::Create(); 400 AttachmentId id = AttachmentId::Create() [all...] |
attachment_service_impl.cc | 40 void AddUnavailableAttachmentId(const AttachmentId& attachment_id); 90 const AttachmentId& attachment_id) { 132 upload_task_queue_.reset(new TaskQueue<AttachmentId>( 236 const AttachmentId& attachment_id) { 258 const AttachmentId& attachment_id, 272 void AttachmentServiceImpl::BeginUpload(const AttachmentId& attachment_id) {
|
attachment_downloader_impl.cc | 20 DownloadState(const AttachmentId& attachment_id, 23 AttachmentId attachment_id; 33 const AttachmentId& attachment_id, 62 const AttachmentId& attachment_id,
|
/external/chromium_org/sync/internal_api/public/ |
write_transaction.h | 57 void UpdateEntriesMarkAttachmentAsOnServer(const AttachmentId& attachment_id);
|
/external/chromium_org/sync/api/ |
sync_data_unittest.cc | 75 attachment_ids.push_back(AttachmentId::Create()); 76 attachment_ids.push_back(AttachmentId::Create()); 77 attachment_ids.push_back(AttachmentId::Create());
|