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

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

Issue 640093002: change newly added OVERRIDE to override 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
« no previous file with comments | « no previous file | sync/internal_api/public/attachments/attachment_store_handle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/attachments/attachment_store_handle_unittest.cc
diff --git a/sync/internal_api/attachments/attachment_store_handle_unittest.cc b/sync/internal_api/attachments/attachment_store_handle_unittest.cc
index e99f6e131ae1818233cff10e4baf6bf5328fbb26..a282c607977ab5719acf04bba0ab6175f255056f 100644
--- a/sync/internal_api/attachments/attachment_store_handle_unittest.cc
+++ b/sync/internal_api/attachments/attachment_store_handle_unittest.cc
@@ -35,17 +35,17 @@ class MockAttachmentStore : public AttachmentStoreBase {
}
virtual void Read(const AttachmentIdList& ids,
- const ReadCallback& callback) OVERRIDE {
+ const ReadCallback& callback) override {
read_called_.Run();
}
virtual void Write(const AttachmentList& attachments,
- const WriteCallback& callback) OVERRIDE {
+ const WriteCallback& callback) override {
write_called_.Run();
}
virtual void Drop(const AttachmentIdList& ids,
- const DropCallback& callback) OVERRIDE {
+ const DropCallback& callback) override {
drop_called_.Run();
}
« no previous file with comments | « no previous file | sync/internal_api/public/attachments/attachment_store_handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698