Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1882)

Unified Diff: chrome/browser/extensions/extension_sync_data.h

Issue 264763002: Support remote installation of extensions and apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: histogram owner Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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|).
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/browser/extensions/extension_sync_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698