| Index: extensions/common/feature_switch.cc
|
| diff --git a/extensions/common/feature_switch.cc b/extensions/common/feature_switch.cc
|
| index cc3d9a3bdc63f560fa3b700058a17fc990d9c185..d3fe485eb587c26169239fcded62e36627ff5f5d 100644
|
| --- a/extensions/common/feature_switch.cc
|
| +++ b/extensions/common/feature_switch.cc
|
| @@ -20,6 +20,9 @@ class CommonSwitches {
|
| : easy_off_store_install(
|
| switches::kEasyOffStoreExtensionInstall,
|
| FeatureSwitch::DEFAULT_DISABLED),
|
| + force_dev_mode_highlighting(
|
| + switches::kForceDevModeHighlighting,
|
| + FeatureSwitch::DEFAULT_DISABLED),
|
| global_commands(
|
| switches::kGlobalCommands,
|
| FeatureSwitch::DEFAULT_DISABLED),
|
| @@ -44,6 +47,7 @@ class CommonSwitches {
|
| FeatureSwitch::DEFAULT_DISABLED) {}
|
|
|
| FeatureSwitch easy_off_store_install;
|
| + FeatureSwitch force_dev_mode_highlighting;
|
| FeatureSwitch global_commands;
|
| FeatureSwitch script_badges;
|
| FeatureSwitch script_bubble;
|
| @@ -57,6 +61,9 @@ base::LazyInstance<CommonSwitches> g_common_switches =
|
|
|
| } // namespace
|
|
|
| +FeatureSwitch* FeatureSwitch::force_dev_mode_highlighting() {
|
| + return &g_common_switches.Get().force_dev_mode_highlighting;
|
| +}
|
| FeatureSwitch* FeatureSwitch::easy_off_store_install() {
|
| return &g_common_switches.Get().easy_off_store_install;
|
| }
|
|
|