| 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();
 | 
| 
 |