Index: sync/internal_api/public/attachments/in_memory_attachment_store.h |
diff --git a/sync/internal_api/public/attachments/in_memory_attachment_store.h b/sync/internal_api/public/attachments/in_memory_attachment_store.h |
index adf4035a9173b7c0d9fcd8dc2509d4d8b367e351..c586ef0ef16feb0037b309e41fbb21fdf448dd62 100644 |
--- a/sync/internal_api/public/attachments/in_memory_attachment_store.h |
+++ b/sync/internal_api/public/attachments/in_memory_attachment_store.h |
@@ -23,15 +23,13 @@ class SYNC_EXPORT InMemoryAttachmentStore : public AttachmentStoreBase, |
public: |
InMemoryAttachmentStore( |
const scoped_refptr<base::SingleThreadTaskRunner>& callback_task_runner); |
- virtual ~InMemoryAttachmentStore(); |
+ ~InMemoryAttachmentStore() override; |
// AttachmentStoreBase implementation. |
- virtual void Read(const AttachmentIdList& ids, |
- const ReadCallback& callback) override; |
- virtual void Write(const AttachmentList& attachments, |
- const WriteCallback& callback) override; |
- virtual void Drop(const AttachmentIdList& ids, |
- const DropCallback& callback) override; |
+ void Read(const AttachmentIdList& ids, const ReadCallback& callback) override; |
+ void Write(const AttachmentList& attachments, |
+ const WriteCallback& callback) override; |
+ void Drop(const AttachmentIdList& ids, const DropCallback& callback) override; |
private: |
scoped_refptr<base::SingleThreadTaskRunner> callback_task_runner_; |