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

Unified Diff: extensions/common/feature_switch.cc

Issue 820513002: Renamed WorkerFrame to SurfaceWorker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests Created 6 years 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 | « extensions/common/feature_switch.h ('k') | 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 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;
« no previous file with comments | « extensions/common/feature_switch.h ('k') | extensions/common/switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698