Index: extensions/common/feature_switch.cc |
diff --git a/extensions/common/feature_switch.cc b/extensions/common/feature_switch.cc |
index c2f06aa85e78cd417088fc1f29af29fbc46284bc..c81a2d29585ae439b212a0fb7cd1ed5da381a45e 100644 |
--- a/extensions/common/feature_switch.cc |
+++ b/extensions/common/feature_switch.cc |
@@ -35,7 +35,8 @@ class CommonSwitches { |
FeatureSwitch::DEFAULT_DISABLED), |
embedded_extension_options(switches::kEmbeddedExtensionOptions, |
FeatureSwitch::DEFAULT_DISABLED), |
- worker_frame(switches::kWorkerFrame, FeatureSwitch::DEFAULT_DISABLED), |
+ surface_worker(switches::kSurfaceWorker, |
+ FeatureSwitch::DEFAULT_DISABLED), |
trace_app_source(switches::kTraceAppSource, |
FeatureSwitch::DEFAULT_DISABLED) { |
} |
@@ -55,7 +56,7 @@ class CommonSwitches { |
FeatureSwitch extension_action_redesign; |
FeatureSwitch scripts_require_action; |
FeatureSwitch embedded_extension_options; |
- FeatureSwitch worker_frame; |
+ FeatureSwitch surface_worker; |
FeatureSwitch trace_app_source; |
}; |
@@ -88,8 +89,8 @@ FeatureSwitch* FeatureSwitch::scripts_require_action() { |
FeatureSwitch* FeatureSwitch::embedded_extension_options() { |
return &g_common_switches.Get().embedded_extension_options; |
} |
-FeatureSwitch* FeatureSwitch::worker_frame() { |
- return &g_common_switches.Get().worker_frame; |
+FeatureSwitch* FeatureSwitch::surface_worker() { |
+ return &g_common_switches.Get().surface_worker; |
} |
FeatureSwitch* FeatureSwitch::trace_app_source() { |
return &g_common_switches.Get().trace_app_source; |