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

Unified Diff: components/sync/driver/data_type_status_table.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
« no previous file with comments | « components/sync/driver/data_type_manager_impl.h ('k') | components/sync/driver/generic_change_processor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/driver/data_type_status_table.h
diff --git a/components/sync/driver/data_type_status_table.h b/components/sync/driver/data_type_status_table.h
index 51de01982d7694aaa3ed2a2a9992142fff0dc271..607f33c635e41dd682271f92acd401ab4ace1f3d 100644
--- a/components/sync/driver/data_type_status_table.h
+++ b/components/sync/driver/data_type_status_table.h
@@ -16,7 +16,7 @@ namespace syncer {
// Class to keep track of data types that have encountered an error during sync.
class DataTypeStatusTable {
public:
- typedef std::map<ModelType, SyncError> TypeErrorMap;
+ using TypeErrorMap = std::map<ModelType, SyncError>;
DataTypeStatusTable();
DataTypeStatusTable(const DataTypeStatusTable& other);
« no previous file with comments | « components/sync/driver/data_type_manager_impl.h ('k') | components/sync/driver/generic_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698