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

Unified Diff: sync/internal_api/attachments/attachment_service_proxy_unittest.cc

Issue 629733002: replace OVERRIDE and FINAL with override and 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/attachments/attachment_service_proxy_unittest.cc
diff --git a/sync/internal_api/attachments/attachment_service_proxy_unittest.cc b/sync/internal_api/attachments/attachment_service_proxy_unittest.cc
index a946382af65b9060dbf67187483892840f56b50f..68bd021c5cc860a09d147779e7dfd16afc4b297e 100644
--- a/sync/internal_api/attachments/attachment_service_proxy_unittest.cc
+++ b/sync/internal_api/attachments/attachment_service_proxy_unittest.cc
@@ -34,11 +34,11 @@ class StubAttachmentService : public AttachmentService,
virtual ~StubAttachmentService() {}
- virtual AttachmentStore* GetStore() OVERRIDE { return NULL; }
+ virtual AttachmentStore* GetStore() override { return NULL; }
virtual void GetOrDownloadAttachments(const AttachmentIdList& attachment_ids,
const GetOrDownloadCallback& callback)
- OVERRIDE {
+ override {
CalledOnValidThread();
Increment();
scoped_ptr<AttachmentMap> attachments(new AttachmentMap());
@@ -50,7 +50,7 @@ class StubAttachmentService : public AttachmentService,
}
virtual void DropAttachments(const AttachmentIdList& attachment_ids,
- const DropCallback& callback) OVERRIDE {
+ const DropCallback& callback) override {
CalledOnValidThread();
Increment();
base::MessageLoop::current()->PostTask(
@@ -58,7 +58,7 @@ class StubAttachmentService : public AttachmentService,
}
virtual void UploadAttachments(
- const AttachmentIdSet& attachments_ids) OVERRIDE {
+ const AttachmentIdSet& attachments_ids) override {
CalledOnValidThread();
Increment();
}
@@ -110,7 +110,7 @@ class AttachmentServiceProxyTest : public testing::Test,
}
virtual void TearDown()
- OVERRIDE {
+ override {
// We must take care to call the stub's destructor on the stub_thread
// because that's the thread to which its WeakPtrs are bound.
if (stub) {

Powered by Google App Engine
This is Rietveld 408576698