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

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

Issue 2054773002: Replace the WAS_INSTALLED_BY_CUSTODIAN creation flag with a pref (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing the build Created 4 years, 6 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 0759fdc2475f5ef492910f4ee588647fc6c51736..7c6aed8694fe5bc83d9b71ac34d0946c8fa93bc0 100644
--- a/chrome/browser/extensions/pending_extension_info.cc
+++ b/chrome/browser/extensions/pending_extension_info.cc
@@ -16,7 +16,6 @@ PendingExtensionInfo::PendingExtensionInfo(
ShouldAllowInstallPredicate should_allow_install,
bool is_from_sync,
Manifest::Location install_source,
- int creation_flags,
bool mark_acknowledged,
bool remote_install)
: id_(id),
@@ -26,7 +25,6 @@ PendingExtensionInfo::PendingExtensionInfo(
should_allow_install_(should_allow_install),
is_from_sync_(is_from_sync),
install_source_(install_source),
- creation_flags_(creation_flags),
mark_acknowledged_(mark_acknowledged),
remote_install_(remote_install) {
}
@@ -36,7 +34,6 @@ PendingExtensionInfo::PendingExtensionInfo()
should_allow_install_(NULL),
is_from_sync_(true),
install_source_(Manifest::INVALID_LOCATION),
- creation_flags_(0),
mark_acknowledged_(false),
remote_install_(false) {
}
« 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