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

Unified Diff: sync/internal_api/attachments/attachment_service_proxy.cc

Issue 1035573002: [Sync] Replace AttachmentIdSet with AttachmentIdList in interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes after Nick's feedback. 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/attachments/attachment_service_proxy.cc
diff --git a/sync/internal_api/attachments/attachment_service_proxy.cc b/sync/internal_api/attachments/attachment_service_proxy.cc
index 50b7a64989f08c544f080c348abf872a505d68df..91a627db3f793ee9fc7b6c7456690e76373f4690 100644
--- a/sync/internal_api/attachments/attachment_service_proxy.cc
+++ b/sync/internal_api/attachments/attachment_service_proxy.cc
@@ -66,7 +66,7 @@ void AttachmentServiceProxy::GetOrDownloadAttachments(
}
void AttachmentServiceProxy::UploadAttachments(
- const AttachmentIdSet& attachment_ids) {
+ const AttachmentIdList& attachment_ids) {
DCHECK(wrapped_task_runner_.get());
wrapped_task_runner_->PostTask(
FROM_HERE,
@@ -91,7 +91,7 @@ void AttachmentServiceProxy::Core::GetOrDownloadAttachments(
}
void AttachmentServiceProxy::Core::UploadAttachments(
- const AttachmentIdSet& attachment_ids) {
+ const AttachmentIdList& attachment_ids) {
if (!wrapped_) {
return;
}

Powered by Google App Engine
This is Rietveld 408576698