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

Unified Diff: components/sync/base/enum_set_unittest.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
« no previous file with comments | « components/sync/base/enum_set.h ('k') | components/sync/base/extensions_activity.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/base/enum_set_unittest.cc
diff --git a/components/sync/base/enum_set_unittest.cc b/components/sync/base/enum_set_unittest.cc
index 7fea26dfbca4223c99b58c669b10c82d628529ce..e6293f942d3a73be83d6ead2596f3b567f24e187 100644
--- a/components/sync/base/enum_set_unittest.cc
+++ b/components/sync/base/enum_set_unittest.cc
@@ -22,7 +22,7 @@ enum TestEnum {
TEST_5
};
-typedef EnumSet<TestEnum, TEST_MIN, TEST_MAX> TestEnumSet;
+using TestEnumSet = EnumSet<TestEnum, TEST_MIN, TEST_MAX>;
class EnumSetTest : public ::testing::Test {};
« no previous file with comments | « components/sync/base/enum_set.h ('k') | components/sync/base/extensions_activity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698