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

Unified Diff: sync/test/mock_invalidation.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
« no previous file with comments | « sync/test/local_sync_test_server.h ('k') | sync/test/null_directory_change_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/mock_invalidation.h
diff --git a/sync/test/mock_invalidation.h b/sync/test/mock_invalidation.h
index a499781dd49cdfd6f8c9e57d0f49c3a04faf0e02..65d1bcef2f66f99d320e83196c58cc0a68d87ffe 100644
--- a/sync/test/mock_invalidation.h
+++ b/sync/test/mock_invalidation.h
@@ -19,14 +19,14 @@ class MockInvalidation : public InvalidationInterface {
static scoped_ptr<MockInvalidation> Build(int64 version,
const std::string& payload);
- virtual ~MockInvalidation();
+ ~MockInvalidation() override;
// Implementation of InvalidationInterface.
- virtual bool IsUnknownVersion() const override;
- virtual const std::string& GetPayload() const override;
- virtual int64 GetVersion() const override;
- virtual void Acknowledge() override;
- virtual void Drop() override;
+ bool IsUnknownVersion() const override;
+ const std::string& GetPayload() const override;
+ int64 GetVersion() const override;
+ void Acknowledge() override;
+ void Drop() override;
protected:
MockInvalidation(bool is_unknown_version,
« no previous file with comments | « sync/test/local_sync_test_server.h ('k') | sync/test/null_directory_change_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698