diff options
Diffstat (limited to 'sync/internal_api/public/attachments')
3 files changed, 4 insertions, 4 deletions
diff --git a/sync/internal_api/public/attachments/attachment_service.h b/sync/internal_api/public/attachments/attachment_service.h index da4b597..6d061b6 100644 --- a/sync/internal_api/public/attachments/attachment_service.h +++ b/sync/internal_api/public/attachments/attachment_service.h @@ -68,7 +68,7 @@ class SYNC_EXPORT AttachmentService { // A request to upload attachments does not persist across restarts of Chrome. // // Invokes OnAttachmentUploaded on the Delegate (if provided). - virtual void UploadAttachments(const AttachmentIdSet& attachment_ids) = 0; + virtual void UploadAttachments(const AttachmentIdList& attachment_ids) = 0; }; } // namespace syncer diff --git a/sync/internal_api/public/attachments/attachment_service_impl.h b/sync/internal_api/public/attachments/attachment_service_impl.h index c3275bf..03d921f 100644 --- a/sync/internal_api/public/attachments/attachment_service_impl.h +++ b/sync/internal_api/public/attachments/attachment_service_impl.h @@ -64,7 +64,7 @@ class SYNC_EXPORT AttachmentServiceImpl // AttachmentService implementation. void GetOrDownloadAttachments(const AttachmentIdList& attachment_ids, const GetOrDownloadCallback& callback) override; - void UploadAttachments(const AttachmentIdSet& attachment_ids) override; + void UploadAttachments(const AttachmentIdList& attachment_ids) override; // NetworkChangeObserver implementation. void OnNetworkChanged( diff --git a/sync/internal_api/public/attachments/attachment_service_proxy.h b/sync/internal_api/public/attachments/attachment_service_proxy.h index ef6e287..c62a206b 100644 --- a/sync/internal_api/public/attachments/attachment_service_proxy.h +++ b/sync/internal_api/public/attachments/attachment_service_proxy.h @@ -52,7 +52,7 @@ class SYNC_EXPORT AttachmentServiceProxy : public AttachmentService { void GetOrDownloadAttachments(const AttachmentIdList& attachment_ids, const GetOrDownloadCallback& callback) override; - void UploadAttachments(const AttachmentIdSet& attachment_ids) override; + void UploadAttachments(const AttachmentIdList& attachment_ids) override; protected: // Core does the work of proxying calls to AttachmentService methods from one @@ -78,7 +78,7 @@ class SYNC_EXPORT AttachmentServiceProxy : public AttachmentService { void GetOrDownloadAttachments( const AttachmentIdList& attachment_ids, const GetOrDownloadCallback& callback) override; - void UploadAttachments(const AttachmentIdSet& attachment_ids) override; + void UploadAttachments(const AttachmentIdList& attachment_ids) override; protected: friend class base::RefCountedThreadSafe<Core>; |