OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/views/corewm/corewm_switches.h" | 5 #include "ui/views/corewm/corewm_switches.h" |
6 | 6 |
7 namespace views { | 7 namespace views { |
8 namespace corewm { | 8 namespace corewm { |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
| 11 // When set uses the CoreWM FocusController in place of the Ash |
| 12 // ActivationController and aura FocusManager. |
| 13 const char kUseFocusController[] = "views-corewm-use-focus-controller"; |
| 14 |
11 // If present animations are disabled. | 15 // If present animations are disabled. |
12 const char kWindowAnimationsDisabled[] = | 16 const char kWindowAnimationsDisabled[] = |
13 "views-corewm-window-animations-disabled"; | 17 "views-corewm-window-animations-disabled"; |
14 | 18 |
15 } // namespace switches | 19 } // namespace switches |
16 } // namespace corewm | 20 } // namespace corewm |
17 } // namespace views | 21 } // namespace views |
OLD | NEW |