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

Unified Diff: components/sync/base/progress_marker_map.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/base/ordinal_unittest.cc ('k') | components/sync/base/proto_value_ptr_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/base/progress_marker_map.h
diff --git a/components/sync/base/progress_marker_map.h b/components/sync/base/progress_marker_map.h
index 68b93dd8f55f651198edb127c8901678c8639d86..f830a2f1daf71f7c0607767802573b33aac448e1 100644
--- a/components/sync/base/progress_marker_map.h
+++ b/components/sync/base/progress_marker_map.h
@@ -19,7 +19,7 @@ namespace syncer {
// A container that maps ModelType to serialized
// DataTypeProgressMarkers.
-typedef std::map<ModelType, std::string> ProgressMarkerMap;
+using ProgressMarkerMap = std::map<ModelType, std::string>;
std::unique_ptr<base::DictionaryValue> ProgressMarkerMapToValue(
const ProgressMarkerMap& marker_map);
« no previous file with comments | « components/sync/base/ordinal_unittest.cc ('k') | components/sync/base/proto_value_ptr_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698