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 fa514572956287c7510c2f8c4e03c07072b0ede9..fb7c08c92882059f183be6e9483770eb52947cdd 100644 |
--- a/sync/internal_api/public/attachments/attachment_service_proxy.h |
+++ b/sync/internal_api/public/attachments/attachment_service_proxy.h |
@@ -51,16 +51,13 @@ |
virtual ~AttachmentServiceProxy(); |
// AttachmentService implementation. |
- // |
- // GetStore always returns NULL. |
- virtual AttachmentStore* GetStore() OVERRIDE; |
virtual void GetOrDownloadAttachments( |
const AttachmentIdList& attachment_ids, |
const GetOrDownloadCallback& callback) OVERRIDE; |
virtual void DropAttachments(const AttachmentIdList& attachment_ids, |
const DropCallback& callback) OVERRIDE; |
- virtual void UploadAttachments( |
- const AttachmentIdSet& attachment_ids) OVERRIDE; |
+ virtual void StoreAttachments(const AttachmentList& attachment, |
+ const StoreCallback& callback) OVERRIDE; |
protected: |
// Core does the work of proxying calls to AttachmentService methods from one |
@@ -83,14 +80,13 @@ |
Core(const base::WeakPtr<syncer::AttachmentService>& wrapped); |
// AttachmentService implementation. |
- virtual AttachmentStore* GetStore() OVERRIDE; |
virtual void GetOrDownloadAttachments( |
const AttachmentIdList& attachment_ids, |
const GetOrDownloadCallback& callback) OVERRIDE; |
virtual void DropAttachments(const AttachmentIdList& attachment_ids, |
const DropCallback& callback) OVERRIDE; |
- virtual void UploadAttachments( |
- const AttachmentIdSet& attachment_ids) OVERRIDE; |
+ virtual void StoreAttachments(const AttachmentList& attachment, |
+ const StoreCallback& callback) OVERRIDE; |
protected: |
friend class base::RefCountedThreadSafe<Core>; |