| Index: chrome/browser/sync/glue/typed_url_change_processor.h
|
| diff --git a/chrome/browser/sync/glue/typed_url_change_processor.h b/chrome/browser/sync/glue/typed_url_change_processor.h
|
| index 73cfe521d247eee4cdb77673e52e7ecaac5cd5ea..46cdf5fc38491f557214779c213a9c66ae0994ae 100644
|
| --- a/chrome/browser/sync/glue/typed_url_change_processor.h
|
| +++ b/chrome/browser/sync/glue/typed_url_change_processor.h
|
| @@ -55,23 +55,23 @@ class TypedUrlChangeProcessor : public sync_driver::ChangeProcessor,
|
| // History -> sync API change application.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| // sync API model -> WebDataService change application.
|
| virtual void ApplyChangesFromSyncModel(
|
| const syncer::BaseTransaction* trans,
|
| int64 model_version,
|
| - const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
|
| + const syncer::ImmutableChangeRecordList& changes) override;
|
|
|
| // Commit changes here, after we've released the transaction lock to avoid
|
| // jank.
|
| - virtual void CommitChangesFromSyncModel() OVERRIDE;
|
| + virtual void CommitChangesFromSyncModel() override;
|
|
|
| // Stop processing changes and wait for being destroyed.
|
| void Disconnect();
|
|
|
| protected:
|
| - virtual void StartImpl() OVERRIDE;
|
| + virtual void StartImpl() override;
|
|
|
| private:
|
| friend class ScopedStopObserving<TypedUrlChangeProcessor>;
|
|
|