diff options
Diffstat (limited to 'chrome/browser/prefs/pref_service_syncable.h')
-rw-r--r-- | chrome/browser/prefs/pref_service_syncable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/prefs/pref_service_syncable.h b/chrome/browser/prefs/pref_service_syncable.h index fd799b3..c1b4960 100644 --- a/chrome/browser/prefs/pref_service_syncable.h +++ b/chrome/browser/prefs/pref_service_syncable.h @@ -44,7 +44,7 @@ class PrefServiceSyncable : public PrefService { base::Callback<void(PersistentPrefStore::PrefReadError)> read_error_callback, bool async); - virtual ~PrefServiceSyncable(); + ~PrefServiceSyncable() override; // Creates an incognito copy of the pref service that shares most pref stores // but uses a fresh non-persistent overlay for the user pref store and an @@ -79,7 +79,7 @@ class PrefServiceSyncable : public PrefService { syncer::SyncableService* GetSyncableService(const syncer::ModelType& type); // Do not call this after having derived an incognito or per tab pref service. - virtual void UpdateCommandLinePrefStore(PrefStore* cmd_line_store) override; + void UpdateCommandLinePrefStore(PrefStore* cmd_line_store) override; void AddSyncedPrefObserver(const std::string& name, SyncedPrefObserver* observer); |