| Index: sync/internal_api/public/attachments/attachment_store_handle.h
|
| diff --git a/sync/internal_api/public/attachments/attachment_store_handle.h b/sync/internal_api/public/attachments/attachment_store_handle.h
|
| index fae66603d415f22b723bb1fa353480d064e5672b..012a603f488ae882360e705867819d4d3325b1b6 100644
|
| --- a/sync/internal_api/public/attachments/attachment_store_handle.h
|
| +++ b/sync/internal_api/public/attachments/attachment_store_handle.h
|
| @@ -41,15 +41,13 @@ class SYNC_EXPORT AttachmentStoreHandle : public AttachmentStore,
|
| const scoped_refptr<base::SequencedTaskRunner>& backend_task_runner);
|
|
|
| // AttachmentStore implementation.
|
| - virtual void Read(const AttachmentIdList& id,
|
| - const ReadCallback& callback) override;
|
| - virtual void Write(const AttachmentList& attachments,
|
| - const WriteCallback& callback) override;
|
| - virtual void Drop(const AttachmentIdList& id,
|
| - const DropCallback& callback) override;
|
| + void Read(const AttachmentIdList& id, const ReadCallback& callback) override;
|
| + void Write(const AttachmentList& attachments,
|
| + const WriteCallback& callback) override;
|
| + void Drop(const AttachmentIdList& id, const DropCallback& callback) override;
|
|
|
| private:
|
| - virtual ~AttachmentStoreHandle();
|
| + ~AttachmentStoreHandle() override;
|
|
|
| // AttachmentStoreHandle controls backend's lifetime. It is safe for
|
| // AttachmentStoreHandle to bind backend through base::Unretained for posts.
|
|
|