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

Unified Diff: sync/internal_api/public/attachments/attachment_uploader_impl.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/attachment_uploader_impl.h
diff --git a/sync/internal_api/public/attachments/attachment_uploader_impl.h b/sync/internal_api/public/attachments/attachment_uploader_impl.h
index 7b5c7fca4d432de4c3d640889fac13122a752c96..fde544c59c1e39da44bfa80b912161b6372ddab3 100644
--- a/sync/internal_api/public/attachments/attachment_uploader_impl.h
+++ b/sync/internal_api/public/attachments/attachment_uploader_impl.h
@@ -41,11 +41,11 @@ class SYNC_EXPORT AttachmentUploaderImpl : public AttachmentUploader,
const OAuth2TokenService::ScopeSet& scopes,
const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>&
token_service_provider);
- virtual ~AttachmentUploaderImpl();
+ ~AttachmentUploaderImpl() override;
// AttachmentUploader implementation.
- virtual void UploadAttachment(const Attachment& attachment,
- const UploadCallback& callback) override;
+ void UploadAttachment(const Attachment& attachment,
+ const UploadCallback& callback) override;
// Return the URL for the given |sync_service_url| and |attachment_id|.
static GURL GetURLForAttachmentId(const GURL& sync_service_url,

Powered by Google App Engine
This is Rietveld 408576698