Index: chrome/browser/extensions/app_sync_bundle.h |
diff --git a/chrome/browser/extensions/app_sync_bundle.h b/chrome/browser/extensions/app_sync_bundle.h |
index b13f84c55dd456e4dc67d17aa33345bf82648710..b79a1eda4b0b75c3a8ba2a3786dc732a4a17bedc 100644 |
--- a/chrome/browser/extensions/app_sync_bundle.h |
+++ b/chrome/browser/extensions/app_sync_bundle.h |
@@ -32,7 +32,7 @@ class ExtensionSet; |
class AppSyncBundle : public SyncBundle { |
public: |
explicit AppSyncBundle(ExtensionSyncService* extension_sync_service); |
- virtual ~AppSyncBundle(); |
+ ~AppSyncBundle() override; |
// Setup this bundle to be sync application data. |
void SetupSync(syncer::SyncChangeProcessor* sync_proccessor, |
@@ -80,10 +80,10 @@ class AppSyncBundle : 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 application or change an existing one. |
- virtual void SyncChangeIfNeeded(const Extension& extension) override; |
+ void SyncChangeIfNeeded(const Extension& extension) override; |
private: |
// Add a synced app. |