diff options
author | pavely <pavely@chromium.org> | 2015-03-25 00:44:33 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-25 07:45:14 +0000 |
commit | 66175b0031526dd7d2575b6bcce62a1c5c2db580 (patch) | |
tree | 073182560c2b7e8c5a01c0809884f5853e0e2619 /sync/internal_api/public/attachments/attachment_service_impl.h | |
parent | 42b56f358e424631639597891908c2ee3b0e7454 (diff) | |
download | chromium_src-66175b0031526dd7d2575b6bcce62a1c5c2db580.zip chromium_src-66175b0031526dd7d2575b6bcce62a1c5c2db580.tar.gz chromium_src-66175b0031526dd7d2575b6bcce62a1c5c2db580.tar.bz2 |
[Sync] Replace AttachmentIdSet with AttachmentIdList in interfaces.
Today both types are used on AttachmentService and other interfaces.
In this change I make all interfaces use AttachmentIdList.
AttachmentIdSet is only used in implementations and unittests.
R=maniscalco@chromium.org
BUG=
TEST=No observable behavior change.
Review URL: https://codereview.chromium.org/1035573002
Cr-Commit-Position: refs/heads/master@{#322130}
Diffstat (limited to 'sync/internal_api/public/attachments/attachment_service_impl.h')
-rw-r--r-- | sync/internal_api/public/attachments/attachment_service_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
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( |