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

Unified Diff: sync/internal_api/js_sync_manager_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
Index: sync/internal_api/js_sync_manager_observer.h
diff --git a/sync/internal_api/js_sync_manager_observer.h b/sync/internal_api/js_sync_manager_observer.h
index 6f220054b7671bb58351cb19dbc87b1c07c3130e..1e694a8c8838b3206d4ec9165c6437ef2471bdb6 100644
--- a/sync/internal_api/js_sync_manager_observer.h
+++ b/sync/internal_api/js_sync_manager_observer.h
@@ -33,18 +33,18 @@ class SYNC_EXPORT_PRIVATE JsSyncManagerObserver : public SyncManager::Observer {
// SyncManager::Observer implementation.
virtual void OnSyncCycleCompleted(
- const sessions::SyncSessionSnapshot& snapshot) OVERRIDE;
- virtual void OnConnectionStatusChange(ConnectionStatus status) OVERRIDE;
+ const sessions::SyncSessionSnapshot& snapshot) override;
+ virtual void OnConnectionStatusChange(ConnectionStatus status) override;
virtual void OnInitializationComplete(
const WeakHandle<JsBackend>& js_backend,
const WeakHandle<DataTypeDebugInfoListener>& debug_info_listener,
bool success,
- syncer::ModelTypeSet restored_types) OVERRIDE;
+ syncer::ModelTypeSet restored_types) override;
virtual void OnActionableError(
- const SyncProtocolError& sync_protocol_error) OVERRIDE;
- virtual void OnProtocolEvent(const ProtocolEvent& event) OVERRIDE;
+ const SyncProtocolError& sync_protocol_error) override;
+ virtual void OnProtocolEvent(const ProtocolEvent& event) override;
virtual void OnMigrationRequested(
- syncer::ModelTypeSet types) OVERRIDE;
+ syncer::ModelTypeSet types) override;
private:
void HandleJsEvent(const tracked_objects::Location& from_here,

Powered by Google App Engine
This is Rietveld 408576698