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

Unified Diff: components/sync/model/sync_change_processor.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/model/string_ordinal.h ('k') | components/sync/model/sync_change_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/model/sync_change_processor.h
diff --git a/components/sync/model/sync_change_processor.h b/components/sync/model/sync_change_processor.h
index 82eda70041516803f4f40b40ee558fd8130e3bcc..ca30f9fe59aee97233239db6b408506f76364739 100644
--- a/components/sync/model/sync_change_processor.h
+++ b/components/sync/model/sync_change_processor.h
@@ -22,14 +22,14 @@ class SyncChange;
class LocalChangeObserver;
-typedef std::vector<SyncChange> SyncChangeList;
+using SyncChangeList = std::vector<SyncChange>;
// An interface for services that handle receiving SyncChanges.
class SyncChangeProcessor {
public:
// Whether a context change should force a datatype refresh or not.
enum ContextRefreshStatus { NO_REFRESH, REFRESH_NEEDED };
- typedef base::Callback<void(const SyncData&)> GetSyncDataCallback;
+ using GetSyncDataCallback = base::Callback<void(const SyncData&)>;
SyncChangeProcessor();
virtual ~SyncChangeProcessor();
« no previous file with comments | « components/sync/model/string_ordinal.h ('k') | components/sync/model/sync_change_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698