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

Unified Diff: components/sync/base/cryptographer.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/attachment_id_proto_unittest.cc ('k') | components/sync/base/enum_set.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/base/cryptographer.h
diff --git a/components/sync/base/cryptographer.h b/components/sync/base/cryptographer.h
index a11ae3e188211060e1c22992dacc82701ca77dfa..b4fcb90808cd6450d32e63fc9b999bdf52e1ce28 100644
--- a/components/sync/base/cryptographer.h
+++ b/components/sync/base/cryptographer.h
@@ -185,7 +185,7 @@ class Cryptographer {
bool ImportNigoriKey(const std::string& serialized_nigori_key);
private:
- typedef std::map<std::string, linked_ptr<const Nigori>> NigoriMap;
+ using NigoriMap = std::map<std::string, linked_ptr<const Nigori>>;
// Helper method to instantiate Nigori instances for each set of key
// parameters in |bag|.
« no previous file with comments | « components/sync/base/attachment_id_proto_unittest.cc ('k') | components/sync/base/enum_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698