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

Unified Diff: sync/internal_api/js_sync_encryption_handler_observer.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/internal_api/js_mutation_event_observer.h ('k') | sync/internal_api/js_sync_manager_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/js_sync_encryption_handler_observer.h
diff --git a/sync/internal_api/js_sync_encryption_handler_observer.h b/sync/internal_api/js_sync_encryption_handler_observer.h
index 9c741782814b24ffe2f70ba18106f9efa4c73034..94a085e0d4177dee16f0850a2a1e9796652efd10 100644
--- a/sync/internal_api/js_sync_encryption_handler_observer.h
+++ b/sync/internal_api/js_sync_encryption_handler_observer.h
@@ -35,20 +35,20 @@ class SYNC_EXPORT_PRIVATE JsSyncEncryptionHandlerObserver
// SyncEncryptionHandlerObserver::Observer implementation.
virtual void OnPassphraseRequired(
PassphraseRequiredReason reason,
- const sync_pb::EncryptedData& pending_keys) OVERRIDE;
- virtual void OnPassphraseAccepted() OVERRIDE;
+ const sync_pb::EncryptedData& pending_keys) override;
+ virtual void OnPassphraseAccepted() override;
virtual void OnBootstrapTokenUpdated(
const std::string& bootstrap_token,
- BootstrapTokenType type) OVERRIDE;
+ BootstrapTokenType type) override;
virtual void OnEncryptedTypesChanged(
ModelTypeSet encrypted_types,
- bool encrypt_everything) OVERRIDE;
- virtual void OnEncryptionComplete() OVERRIDE;
+ bool encrypt_everything) override;
+ virtual void OnEncryptionComplete() override;
virtual void OnCryptographerStateChanged(
- Cryptographer* cryptographer) OVERRIDE;
+ Cryptographer* cryptographer) override;
virtual void OnPassphraseTypeChanged(
PassphraseType type,
- base::Time explicit_passphrase_time) OVERRIDE;
+ base::Time explicit_passphrase_time) override;
private:
void HandleJsEvent(const tracked_objects::Location& from_here,
« no previous file with comments | « sync/internal_api/js_mutation_event_observer.h ('k') | sync/internal_api/js_sync_manager_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698