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

Unified Diff: components/sync_sessions/lost_navigations_recorder.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_sessions/lost_navigations_recorder.h
diff --git a/components/sync_sessions/lost_navigations_recorder.h b/components/sync_sessions/lost_navigations_recorder.h
index cf433041d43ce1a372bee79f74fe51f35722f175..e56b4248f7fb51c6113211486249462cca66df90 100644
--- a/components/sync_sessions/lost_navigations_recorder.h
+++ b/components/sync_sessions/lost_navigations_recorder.h
@@ -23,8 +23,8 @@ namespace sync_sessions {
// being reflected in the history page.
class LostNavigationsRecorder : public syncer::LocalChangeObserver {
public:
- typedef SessionID::id_type id_type;
- typedef std::set<id_type> IdSet;
+ using id_type = SessionID::id_type;
+ using IdSet = std::set<id_type>;
enum RecorderState { RECORDER_STATE_NOT_SYNCING, RECORDER_STATE_SYNCING };
LostNavigationsRecorder();
« no previous file with comments | « components/sync_sessions/favicon_cache.h ('k') | components/sync_sessions/lost_navigations_recorder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698