Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(844)

Unified Diff: sync/internal_api/public/attachments/attachment_service_proxy.h

Issue 1035573002: [Sync] Replace AttachmentIdSet with AttachmentIdList in interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sync/internal_api/public/attachments/attachment_service_proxy.h
diff --git a/sync/internal_api/public/attachments/attachment_service_proxy.h b/sync/internal_api/public/attachments/attachment_service_proxy.h
index ef6e287f676aa1130b49f6b1868548f388d95f6f..c62a206ba7fb441556b998071bdd7ad934b4254a 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>;

Powered by Google App Engine
This is Rietveld 408576698