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

Unified Diff: extensions/common/feature_switch.cc

Issue 217813002: Remove the kEasyOffStoreInstall switch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Latest master Created 6 years, 8 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
« no previous file with comments | « no previous file | extensions/common/switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/feature_switch.cc
diff --git a/extensions/common/feature_switch.cc b/extensions/common/feature_switch.cc
index e97f270fe904abc52e7608ca22be70141ca2fec1..91ebdda9a05f73b301ac1de9f7ee445781950ee5 100644
--- a/extensions/common/feature_switch.cc
+++ b/extensions/common/feature_switch.cc
@@ -18,7 +18,7 @@ class CommonSwitches {
public:
CommonSwitches()
: easy_off_store_install(
- switches::kEasyOffStoreExtensionInstall,
+ NULL,
FeatureSwitch::DEFAULT_DISABLED),
force_dev_mode_highlighting(
switches::kForceDevModeHighlighting,
@@ -44,10 +44,17 @@ class CommonSwitches {
switches::kEnableOverrideBookmarksUI,
FeatureSwitch::DEFAULT_DISABLED) {}
+ // Enables extensions to be easily installed from sites other than the web
+ // store.
FeatureSwitch easy_off_store_install;
+
FeatureSwitch force_dev_mode_highlighting;
FeatureSwitch global_commands;
+
+ // Should we prompt the user before allowing external extensions to install?
+ // Default is yes.
FeatureSwitch prompt_for_external_extensions;
+
FeatureSwitch error_console;
FeatureSwitch enable_override_bookmarks_ui;
};
« no previous file with comments | « no previous file | extensions/common/switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698