Index: ui/views/corewm/corewm_switches.cc |
diff --git a/ui/views/corewm/corewm_switches.cc b/ui/views/corewm/corewm_switches.cc |
index 450738e6a21b2cdd9889d040fc701ec68cf93b16..8f0dd82a6a9b5e6d9ce25f944601ebcd29ebb690 100644 |
--- a/ui/views/corewm/corewm_switches.cc |
+++ b/ui/views/corewm/corewm_switches.cc |
@@ -10,14 +10,6 @@ namespace views { |
namespace corewm { |
namespace switches { |
-// When set uses the old ActivationController/FocusManager instead of the new |
-// CoreWM FocusController. |
-const char kDisableFocusController[] = "disable-focus-controller"; |
- |
-// When set uses the FocusController in desktop mode. |
-const char kDisableFocusControllerOnDesktop[] = |
- "disable-focus-controller-on-desktop"; |
- |
const char kNoDropShadows[] = "aura-no-shadows"; |
// If present animations are disabled. |
@@ -25,16 +17,5 @@ const char kWindowAnimationsDisabled[] = |
"views-corewm-window-animations-disabled"; |
} // namespace switches |
- |
-bool UseFocusController() { |
- return !CommandLine::ForCurrentProcess()->HasSwitch( |
- switches::kDisableFocusController); |
-} |
- |
-bool UseFocusControllerOnDesktop() { |
- return !CommandLine::ForCurrentProcess()->HasSwitch( |
- switches::kDisableFocusControllerOnDesktop); |
-} |
- |
} // namespace corewm |
} // namespace views |