Chromium Code Reviews| Index: ui/base/ui_base_switches.cc |
| diff --git a/ui/base/ui_base_switches.cc b/ui/base/ui_base_switches.cc |
| index 5f8dd9a0156b96e53832d731b20a6912856ed1b7..03f6bd1aef409aa6ff8b4d53479c9a153fbbe87a 100644 |
| --- a/ui/base/ui_base_switches.cc |
| +++ b/ui/base/ui_base_switches.cc |
| @@ -14,6 +14,9 @@ const char kDisableCoreAnimation[] = "disable-core-animation"; |
| // Disables use of DWM composition for top level windows. |
| const char kDisableDwmComposition[] = "disable-dwm-composition"; |
| +// Disables the new text input focus handling and uses the old one. |
|
msw
2014/03/11 00:58:50
nit: match the language from my other suggestions,
Yuki
2014/03/11 15:27:37
Done.
|
| +const char kDisableNewTextInputFocus[] = "disable-new-text-input-focus"; |
| + |
| // Disables touch adjustment. |
| const char kDisableTouchAdjustment[] = "disable-touch-adjustment"; |
| @@ -23,6 +26,9 @@ const char kDisableTouchDragDrop[] = "disable-touch-drag-drop"; |
| // Disables controls that support touch base text editing. |
| const char kDisableTouchEditing[] = "disable-touch-editing"; |
| +// Enables the new text input focus handling. |
| +const char kEnableNewTextInputFocus[] = "enable-new-text-input-focus"; |
| + |
| // Enables touch event based drag and drop. |
| const char kEnableTouchDragDrop[] = "enable-touch-drag-drop"; |