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

Unified Diff: chrome/browser/sync/test/integration/sync_app_helper.cc

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: chrome/browser/sync/test/integration/sync_app_helper.cc
diff --git a/chrome/browser/sync/test/integration/sync_app_helper.cc b/chrome/browser/sync/test/integration/sync_app_helper.cc
index 7ac396df1d7112c5ec7888cf8f322914eb0ad476..dadd3f6904de0c075c104227f513857c5b84153b 100644
--- a/chrome/browser/sync/test/integration/sync_app_helper.cc
+++ b/chrome/browser/sync/test/integration/sync_app_helper.cc
@@ -45,7 +45,7 @@ struct AppState {
bool from_bookmark;
};
-typedef std::map<std::string, AppState> AppStateMap;
+using AppStateMap = std::map<std::string, AppState>;
AppState::AppState()
: launch_type(extensions::LAUNCH_TYPE_INVALID), from_bookmark(false) {}

Powered by Google App Engine
This is Rietveld 408576698