| 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;
|
| };
|
|
|