| Index: chrome/common/extensions/feature_switch.cc
|
| diff --git a/chrome/common/extensions/feature_switch.cc b/chrome/common/extensions/feature_switch.cc
|
| index e3c15788e7822d308aa56c4e851727e2629d3c83..b1b6fff22ca1852afed2d48ab5a6a0be97c0fd4b 100644
|
| --- a/chrome/common/extensions/feature_switch.cc
|
| +++ b/chrome/common/extensions/feature_switch.cc
|
| @@ -36,6 +36,9 @@ class CommonSwitches {
|
| FeatureSwitch::DEFAULT_DISABLED),
|
| prompt_for_external_extensions(
|
| switches::kPromptForExternalExtensions,
|
| + FeatureSwitch::DEFAULT_DISABLED),
|
| + tab_capture(
|
| + switches::kTabCapture,
|
| FeatureSwitch::DEFAULT_DISABLED)
|
| {
|
| // Disabling easy off-store installation is not yet implemented for Aura. Not
|
| @@ -57,6 +60,7 @@ class CommonSwitches {
|
| FeatureSwitch script_bubble;
|
| FeatureSwitch sideload_wipeout;
|
| FeatureSwitch prompt_for_external_extensions;
|
| + FeatureSwitch tab_capture;
|
| };
|
|
|
| base::LazyInstance<CommonSwitches> g_common_switches =
|
| @@ -86,6 +90,9 @@ FeatureSwitch* FeatureSwitch::sideload_wipeout() {
|
| FeatureSwitch* FeatureSwitch::prompt_for_external_extensions() {
|
| return &g_common_switches.Get().prompt_for_external_extensions;
|
| }
|
| +FeatureSwitch* FeatureSwitch::tab_capture() {
|
| + return &g_common_switches.Get().tab_capture;
|
| +}
|
|
|
|
|
| FeatureSwitch::ScopedOverride::ScopedOverride(FeatureSwitch* feature,
|
|
|