| Index: chrome/browser/extensions/extension_sync_bundle.h
|
| diff --git a/chrome/browser/extensions/extension_sync_bundle.h b/chrome/browser/extensions/extension_sync_bundle.h
|
| index f9986ac3eedb68585a4184e2028579efa2402bcf..7e8eddaf250a5fa85f002bd3be19f50a8d6d62a7 100644
|
| --- a/chrome/browser/extensions/extension_sync_bundle.h
|
| +++ b/chrome/browser/extensions/extension_sync_bundle.h
|
| @@ -32,7 +32,7 @@ class ExtensionSet;
|
| class ExtensionSyncBundle : public SyncBundle {
|
| public:
|
| explicit ExtensionSyncBundle(ExtensionSyncService* extension_sync_service);
|
| - virtual ~ExtensionSyncBundle();
|
| + ~ExtensionSyncBundle() override;
|
|
|
| // Setup this bundle to be sync extension data.
|
| void SetupSync(syncer::SyncChangeProcessor* sync_processor,
|
| @@ -80,10 +80,10 @@ class ExtensionSyncBundle : public SyncBundle {
|
|
|
| // Overrides for SyncBundle.
|
| // Returns true if SetupSync has been called, false otherwise.
|
| - virtual bool IsSyncing() const override;
|
| + bool IsSyncing() const override;
|
|
|
| // Sync a newly-installed extension or change an existing one.
|
| - virtual void SyncChangeIfNeeded(const Extension& extension) override;
|
| + void SyncChangeIfNeeded(const Extension& extension) override;
|
|
|
| private:
|
| // Add a synced extension.
|
|
|