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

Unified Diff: chrome/browser/sync/glue/sync_backend_host_core.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « chrome/browser/sync/glue/sync_backend_host.h ('k') | chrome/browser/sync/glue/sync_backend_host_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/sync_backend_host_core.h
diff --git a/chrome/browser/sync/glue/sync_backend_host_core.h b/chrome/browser/sync/glue/sync_backend_host_core.h
index 4915f0d831c9d0345018fbac1891a00b9a67d1d4..06fdd4ff21b52d7c52c753d2fb496698b3b9044e 100644
--- a/chrome/browser/sync/glue/sync_backend_host_core.h
+++ b/chrome/browser/sync/glue/sync_backend_host_core.h
@@ -91,47 +91,47 @@ class SyncBackendHostCore
// traffic controller here, forwarding incoming messages to appropriate
// landing threads.
virtual void OnSyncCycleCompleted(
- const syncer::sessions::SyncSessionSnapshot& snapshot) OVERRIDE;
+ const syncer::sessions::SyncSessionSnapshot& snapshot) override;
virtual void OnInitializationComplete(
const syncer::WeakHandle<syncer::JsBackend>& js_backend,
const syncer::WeakHandle<syncer::DataTypeDebugInfoListener>&
debug_info_listener,
bool success,
- syncer::ModelTypeSet restored_types) OVERRIDE;
+ syncer::ModelTypeSet restored_types) override;
virtual void OnConnectionStatusChange(
- syncer::ConnectionStatus status) OVERRIDE;
+ syncer::ConnectionStatus status) override;
virtual void OnActionableError(
- const syncer::SyncProtocolError& sync_error) OVERRIDE;
- virtual void OnMigrationRequested(syncer::ModelTypeSet types) OVERRIDE;
- virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) OVERRIDE;
+ const syncer::SyncProtocolError& sync_error) override;
+ virtual void OnMigrationRequested(syncer::ModelTypeSet types) override;
+ virtual void OnProtocolEvent(const syncer::ProtocolEvent& event) override;
// SyncEncryptionHandler::Observer implementation.
virtual void OnPassphraseRequired(
syncer::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,
- syncer::BootstrapTokenType type) OVERRIDE;
+ syncer::BootstrapTokenType type) override;
virtual void OnEncryptedTypesChanged(
syncer::ModelTypeSet encrypted_types,
- bool encrypt_everything) OVERRIDE;
- virtual void OnEncryptionComplete() OVERRIDE;
+ bool encrypt_everything) override;
+ virtual void OnEncryptionComplete() override;
virtual void OnCryptographerStateChanged(
- syncer::Cryptographer* cryptographer) OVERRIDE;
+ syncer::Cryptographer* cryptographer) override;
virtual void OnPassphraseTypeChanged(syncer::PassphraseType type,
- base::Time passphrase_time) OVERRIDE;
+ base::Time passphrase_time) override;
// TypeDebugInfoObserver implementation
virtual void OnCommitCountersUpdated(
syncer::ModelType type,
- const syncer::CommitCounters& counters) OVERRIDE;
+ const syncer::CommitCounters& counters) override;
virtual void OnUpdateCountersUpdated(
syncer::ModelType type,
- const syncer::UpdateCounters& counters) OVERRIDE;
+ const syncer::UpdateCounters& counters) override;
virtual void OnStatusCountersUpdated(
syncer::ModelType type,
- const syncer::StatusCounters& counters) OVERRIDE;
+ const syncer::StatusCounters& counters) override;
// Forwards an invalidation state change to the sync manager.
void DoOnInvalidatorStateChange(syncer::InvalidatorState state);
« no previous file with comments | « chrome/browser/sync/glue/sync_backend_host.h ('k') | chrome/browser/sync/glue/sync_backend_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698