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

Unified Diff: components/sync/test/fake_server/sessions_hierarchy.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/test/fake_server/sessions_hierarchy.h
diff --git a/components/sync/test/fake_server/sessions_hierarchy.h b/components/sync/test/fake_server/sessions_hierarchy.h
index 2163fb5f8be27e8267494fc7b3cec0e13ba28197..8d323d499b6fc48f684207e8d83bda2607b6fffe 100644
--- a/components/sync/test/fake_server/sessions_hierarchy.h
+++ b/components/sync/test/fake_server/sessions_hierarchy.h
@@ -47,11 +47,11 @@ class SessionsHierarchy {
private:
// A collection of tab URLs.
- typedef std::multiset<std::string> Window;
+ using Window = std::multiset<std::string>;
// A collection of Windows (an instance of this collection represents a
// sessions hierarchy).
- typedef std::multiset<Window> WindowContainer;
+ using WindowContainer = std::multiset<Window>;
// The windows of the sessions hierarchy.
WindowContainer windows_;
« no previous file with comments | « components/sync/test/fake_server/fake_server.cc ('k') | components/sync_bookmarks/bookmark_model_associator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698