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

Unified Diff: extensions/common/feature_switch.cc

Issue 2921473002: [Extensions] Remove the extension_action_redesign switch (Closed)
Patch Set: Created 3 years, 7 months 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') | no next file » | 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 5868f02869bfc064bd3bc90e09f2773ee258d350..f677d405b7cb5191e18bb961515bbfa699af5cc5 100644
--- a/extensions/common/feature_switch.cc
+++ b/extensions/common/feature_switch.cc
@@ -42,7 +42,6 @@ class CommonSwitches {
error_console(switches::kErrorConsole, FeatureSwitch::DEFAULT_DISABLED),
enable_override_bookmarks_ui(switches::kEnableOverrideBookmarksUI,
FeatureSwitch::DEFAULT_DISABLED),
- extension_action_redesign(nullptr, FeatureSwitch::DEFAULT_ENABLED),
scripts_require_action(switches::kScriptsRequireAction,
FeatureSwitch::DEFAULT_DISABLED),
embedded_extension_options(switches::kEmbeddedExtensionOptions,
@@ -72,7 +71,6 @@ class CommonSwitches {
FeatureSwitch error_console;
FeatureSwitch enable_override_bookmarks_ui;
- FeatureSwitch extension_action_redesign;
FeatureSwitch scripts_require_action;
FeatureSwitch embedded_extension_options;
FeatureSwitch trace_app_source;
@@ -98,9 +96,6 @@ FeatureSwitch* FeatureSwitch::error_console() {
FeatureSwitch* FeatureSwitch::enable_override_bookmarks_ui() {
return &g_common_switches.Get().enable_override_bookmarks_ui;
}
-FeatureSwitch* FeatureSwitch::extension_action_redesign() {
- return &g_common_switches.Get().extension_action_redesign;
-}
FeatureSwitch* FeatureSwitch::scripts_require_action() {
return &g_common_switches.Get().scripts_require_action;
}
« no previous file with comments | « extensions/common/feature_switch.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698