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

Unified Diff: components/invalidation/invalidation_service_test_template.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/invalidation/invalidation_service_test_template.h
diff --git a/components/invalidation/invalidation_service_test_template.h b/components/invalidation/invalidation_service_test_template.h
index d6eb9856263d88d2032601ab24b5a4fc6d9e3087..dc4a8419c03b34adcec3ed5247ee355a427f60f8 100644
--- a/components/invalidation/invalidation_service_test_template.h
+++ b/components/invalidation/invalidation_service_test_template.h
@@ -339,7 +339,7 @@ class BoundFakeInvalidationHandler : public syncer::FakeInvalidationHandler {
public:
explicit BoundFakeInvalidationHandler(
const invalidation::InvalidationService& invalidator);
- virtual ~BoundFakeInvalidationHandler();
+ ~BoundFakeInvalidationHandler() override;
// Returns the last return value of GetInvalidatorState() on the
// bound invalidator from the last time the invalidator state
@@ -347,8 +347,7 @@ class BoundFakeInvalidationHandler : public syncer::FakeInvalidationHandler {
syncer::InvalidatorState GetLastRetrievedState() const;
// InvalidationHandler implementation.
- virtual void OnInvalidatorStateChange(
- syncer::InvalidatorState state) override;
+ void OnInvalidatorStateChange(syncer::InvalidatorState state) override;
private:
const invalidation::InvalidationService& invalidator_;
« no previous file with comments | « components/invalidation/invalidation_notifier.h ('k') | components/invalidation/invalidator_registrar_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698