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

Unified Diff: sync/internal_api/public/attachments/fake_attachment_downloader.h

Issue 642023004: Standardize usage of virtual/override/final in sync/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/public/attachments/fake_attachment_downloader.h
diff --git a/sync/internal_api/public/attachments/fake_attachment_downloader.h b/sync/internal_api/public/attachments/fake_attachment_downloader.h
index 0b13a0ec9693259c293d68e24f801c497d9a299a..576d06be6617f9549822e355336181c36cb8fc36 100644
--- a/sync/internal_api/public/attachments/fake_attachment_downloader.h
+++ b/sync/internal_api/public/attachments/fake_attachment_downloader.h
@@ -16,11 +16,11 @@ class SYNC_EXPORT FakeAttachmentDownloader : public AttachmentDownloader,
public base::NonThreadSafe {
public:
FakeAttachmentDownloader();
- virtual ~FakeAttachmentDownloader();
+ ~FakeAttachmentDownloader() override;
// AttachmentDownloader implementation.
- virtual void DownloadAttachment(const AttachmentId& attachment_id,
- const DownloadCallback& callback) override;
+ void DownloadAttachment(const AttachmentId& attachment_id,
+ const DownloadCallback& callback) override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeAttachmentDownloader);

Powered by Google App Engine
This is Rietveld 408576698