diff options
Diffstat (limited to 'chrome/browser/extensions/extension_sync_data.h')
-rw-r--r-- | chrome/browser/extensions/extension_sync_data.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_sync_data.h b/chrome/browser/extensions/extension_sync_data.h index 04c4b18..9165e75 100644 --- a/chrome/browser/extensions/extension_sync_data.h +++ b/chrome/browser/extensions/extension_sync_data.h @@ -31,7 +31,8 @@ class ExtensionSyncData { explicit ExtensionSyncData(const syncer::SyncChange& sync_change); ExtensionSyncData(const Extension& extension, bool enabled, - bool incognito_enabled); + bool incognito_enabled, + bool remote_install); ~ExtensionSyncData(); // Retrieve sync data from this class. @@ -56,6 +57,7 @@ class ExtensionSyncData { bool uninstalled() const { return uninstalled_; } bool enabled() const { return enabled_; } bool incognito_enabled() const { return incognito_enabled_; } + bool remote_install() const { return remote_install_; } // Version-dependent properties (i.e., should be used only when the // version of the currenty-installed extension matches |version|). |