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

Unified Diff: chrome/browser/extensions/pending_extension_info.cc

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/pending_extension_info.cc
diff --git a/chrome/browser/extensions/pending_extension_info.cc b/chrome/browser/extensions/pending_extension_info.cc
index 0fa105baa34db081a47bd8061318f82b01a61fd5..b0c052f098313f6c9770fc3f2c58d15088f59cfe 100644
--- a/chrome/browser/extensions/pending_extension_info.cc
+++ b/chrome/browser/extensions/pending_extension_info.cc
@@ -18,7 +18,8 @@ PendingExtensionInfo::PendingExtensionInfo(
bool install_silently,
Manifest::Location install_source,
int creation_flags,
- bool mark_acknowledged)
+ bool mark_acknowledged,
+ bool remote_install)
: id_(id),
update_url_(update_url),
version_(version),
@@ -28,14 +29,20 @@ PendingExtensionInfo::PendingExtensionInfo(
install_silently_(install_silently),
install_source_(install_source),
creation_flags_(creation_flags),
- mark_acknowledged_(mark_acknowledged) {}
+ mark_acknowledged_(mark_acknowledged),
+ remote_install_(remote_install) {
+}
PendingExtensionInfo::PendingExtensionInfo()
: update_url_(),
should_allow_install_(NULL),
is_from_sync_(true),
install_silently_(false),
- install_source_(Manifest::INVALID_LOCATION) {}
+ install_source_(Manifest::INVALID_LOCATION),
+ creation_flags_(0),
+ mark_acknowledged_(false),
+ remote_install_(false) {
+}
PendingExtensionInfo::~PendingExtensionInfo() {}
« no previous file with comments | « chrome/browser/extensions/pending_extension_info.h ('k') | chrome/browser/extensions/pending_extension_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698