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

Unified Diff: extensions/common/feature_switch.cc

Issue 350943003: Support global keyboard commands on Chrome OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test updates Created 6 years, 5 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') | 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 01d0ca229600aa13441bc25dc32b982ed20bbc9e..a68ecd71b3d9389faab76e5a8fc2beaa9ee82254 100644
--- a/extensions/common/feature_switch.cc
+++ b/extensions/common/feature_switch.cc
@@ -23,13 +23,6 @@ class CommonSwitches {
force_dev_mode_highlighting(
switches::kForceDevModeHighlighting,
FeatureSwitch::DEFAULT_DISABLED),
- global_commands(
- switches::kGlobalCommands,
-#if defined(OS_CHROMEOS)
- FeatureSwitch::DEFAULT_DISABLED),
-#else
- FeatureSwitch::DEFAULT_ENABLED),
-#endif
prompt_for_external_extensions(
NULL,
#if defined(OS_WIN)
@@ -57,7 +50,6 @@ class CommonSwitches {
FeatureSwitch easy_off_store_install;
FeatureSwitch force_dev_mode_highlighting;
- FeatureSwitch global_commands;
// Should we prompt the user before allowing external extensions to install?
// Default is yes.
@@ -81,9 +73,6 @@ FeatureSwitch* FeatureSwitch::force_dev_mode_highlighting() {
FeatureSwitch* FeatureSwitch::easy_off_store_install() {
return &g_common_switches.Get().easy_off_store_install;
}
-FeatureSwitch* FeatureSwitch::global_commands() {
- return &g_common_switches.Get().global_commands;
-}
FeatureSwitch* FeatureSwitch::prompt_for_external_extensions() {
return &g_common_switches.Get().prompt_for_external_extensions;
}
« 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