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

Unified Diff: sync/internal_api/debug_info_event_listener.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
Index: sync/internal_api/debug_info_event_listener.h
diff --git a/sync/internal_api/debug_info_event_listener.h b/sync/internal_api/debug_info_event_listener.h
index 64fd830969a999bf80e008b8313230d89bdd2f94..762d5705080606ab2608067a1c1c9f07747b7481 100644
--- a/sync/internal_api/debug_info_event_listener.h
+++ b/sync/internal_api/debug_info_event_listener.h
@@ -41,49 +41,49 @@ class SYNC_EXPORT_PRIVATE DebugInfoEventListener
// SyncManager::Observer implementation.
virtual void OnSyncCycleCompleted(
- const sessions::SyncSessionSnapshot& snapshot) OVERRIDE;
+ const sessions::SyncSessionSnapshot& snapshot) override;
virtual void OnInitializationComplete(
const WeakHandle<JsBackend>& js_backend,
const WeakHandle<DataTypeDebugInfoListener>& debug_listener,
- bool success, ModelTypeSet restored_types) OVERRIDE;
+ bool success, ModelTypeSet restored_types) override;
virtual void OnConnectionStatusChange(
- ConnectionStatus connection_status) OVERRIDE;
+ ConnectionStatus connection_status) override;
virtual void OnActionableError(
- const SyncProtocolError& sync_error) OVERRIDE;
- virtual void OnMigrationRequested(ModelTypeSet types) OVERRIDE;
- virtual void OnProtocolEvent(const ProtocolEvent& event) OVERRIDE;
+ const SyncProtocolError& sync_error) override;
+ virtual void OnMigrationRequested(ModelTypeSet types) override;
+ virtual void OnProtocolEvent(const ProtocolEvent& event) override;
// SyncEncryptionHandler::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;
// Sync manager events.
void OnNudgeFromDatatype(ModelType datatype);
// DebugInfoGetter implementation.
- virtual void GetDebugInfo(sync_pb::DebugInfo* debug_info) OVERRIDE;
+ virtual void GetDebugInfo(sync_pb::DebugInfo* debug_info) override;
// DebugInfoGetter implementation.
- virtual void ClearDebugInfo() OVERRIDE;
+ virtual void ClearDebugInfo() override;
// DataTypeDebugInfoListener implementation.
virtual void OnDataTypeConfigureComplete(
const std::vector<DataTypeConfigurationStats>& configuration_stats)
- OVERRIDE;
+ override;
// Returns a weak pointer to this object.
base::WeakPtr<DataTypeDebugInfoListener> GetWeakPtr();
« no previous file with comments | « sync/internal_api/attachments/fake_attachment_downloader_unittest.cc ('k') | sync/internal_api/http_bridge_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698