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

Unified Diff: components/sync/syncable/change_record.h

Issue 2689773002: [Sync] Replace typedef with using. (Closed)
Patch Set: [Sync] Replace typedef with using. Created 3 years, 10 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: components/sync/syncable/change_record.h
diff --git a/components/sync/syncable/change_record.h b/components/sync/syncable/change_record.h
index fd032c31c17b00055f6628cbe7dfa437d02ef715..20c13936db998743e02e14860068c1e537c0c22e 100644
--- a/components/sync/syncable/change_record.h
+++ b/components/sync/syncable/change_record.h
@@ -60,9 +60,9 @@ struct ChangeRecord {
linked_ptr<ExtraPasswordChangeRecordData> extra;
};
-typedef std::vector<ChangeRecord> ChangeRecordList;
+using ChangeRecordList = std::vector<ChangeRecord>;
-typedef Immutable<ChangeRecordList> ImmutableChangeRecordList;
+using ImmutableChangeRecordList = Immutable<ChangeRecordList>;
} // namespace syncer
« no previous file with comments | « components/sync/model_impl/model_type_store_backend.h ('k') | components/sync/syncable/change_reorder_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698