| Index: chrome/browser/extensions/extension_sync_data.h
|
| diff --git a/chrome/browser/extensions/extension_sync_data.h b/chrome/browser/extensions/extension_sync_data.h
|
| index 04c4b18ddb56537fff9ff611f6c210c638a8899f..9165e7547b1b159fc0dece7ade1a0be7e8313472 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|).
|
|
|