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

Unified Diff: sync/test/fake_sync_encryption_handler.h

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
« no previous file with comments | « sync/test/fake_server/unique_client_entity.h ('k') | sync/test/local_sync_test_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/fake_sync_encryption_handler.h
diff --git a/sync/test/fake_sync_encryption_handler.h b/sync/test/fake_sync_encryption_handler.h
index ce1de21ab02700ec13523d9f961afd6fdf36a0d1..df4c77041e144b31ced0cd28dbdcd1d146bde824 100644
--- a/sync/test/fake_sync_encryption_handler.h
+++ b/sync/test/fake_sync_encryption_handler.h
@@ -29,30 +29,30 @@ class FakeSyncEncryptionHandler : public SyncEncryptionHandler,
virtual ~FakeSyncEncryptionHandler();
// SyncEncryptionHandler implementation.
- virtual void AddObserver(Observer* observer) OVERRIDE;
- virtual void RemoveObserver(Observer* observer) OVERRIDE;
- virtual void Init() OVERRIDE;
+ virtual void AddObserver(Observer* observer) override;
+ virtual void RemoveObserver(Observer* observer) override;
+ virtual void Init() override;
virtual void SetEncryptionPassphrase(const std::string& passphrase,
- bool is_explicit) OVERRIDE;
- virtual void SetDecryptionPassphrase(const std::string& passphrase) OVERRIDE;
- virtual void EnableEncryptEverything() OVERRIDE;
- virtual bool EncryptEverythingEnabled() const OVERRIDE;
- virtual PassphraseType GetPassphraseType() const OVERRIDE;
+ bool is_explicit) override;
+ virtual void SetDecryptionPassphrase(const std::string& passphrase) override;
+ virtual void EnableEncryptEverything() override;
+ virtual bool EncryptEverythingEnabled() const override;
+ virtual PassphraseType GetPassphraseType() const override;
// NigoriHandler implemenation.
virtual void ApplyNigoriUpdate(
const sync_pb::NigoriSpecifics& nigori,
- syncable::BaseTransaction* const trans) OVERRIDE;
+ syncable::BaseTransaction* const trans) override;
virtual void UpdateNigoriFromEncryptedTypes(
sync_pb::NigoriSpecifics* nigori,
- syncable::BaseTransaction* const trans) const OVERRIDE;
+ syncable::BaseTransaction* const trans) const override;
virtual bool NeedKeystoreKey(
- syncable::BaseTransaction* const trans) const OVERRIDE;
+ syncable::BaseTransaction* const trans) const override;
virtual bool SetKeystoreKeys(
const google::protobuf::RepeatedPtrField<google::protobuf::string>& keys,
- syncable::BaseTransaction* const trans) OVERRIDE;
+ syncable::BaseTransaction* const trans) override;
virtual ModelTypeSet GetEncryptedTypes(
- syncable::BaseTransaction* const trans) const OVERRIDE;
+ syncable::BaseTransaction* const trans) const override;
Cryptographer* cryptographer() { return &cryptographer_; }
« no previous file with comments | « sync/test/fake_server/unique_client_entity.h ('k') | sync/test/local_sync_test_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698