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/base/ui_base_switches.h" | 5 #include "ui/base/ui_base_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 #if defined(OS_MACOSX) && !defined(OS_IOS) | 9 #if defined(OS_MACOSX) && !defined(OS_IOS) |
10 // Enable use of cross-process CALayers to display content directly from the | 10 // Enable use of cross-process CALayers to display content directly from the |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 // Enables an experimental focus manager to track text input clients. | 30 // Enables an experimental focus manager to track text input clients. |
31 const char kEnableTextInputFocusManager[] = "enable-text-input-focus-manager"; | 31 const char kEnableTextInputFocusManager[] = "enable-text-input-focus-manager"; |
32 | 32 |
33 // Enables touch event based drag and drop. | 33 // Enables touch event based drag and drop. |
34 const char kEnableTouchDragDrop[] = "enable-touch-drag-drop"; | 34 const char kEnableTouchDragDrop[] = "enable-touch-drag-drop"; |
35 | 35 |
36 // Enables controls that support touch base text editing. | 36 // Enables controls that support touch base text editing. |
37 const char kEnableTouchEditing[] = "enable-touch-editing"; | 37 const char kEnableTouchEditing[] = "enable-touch-editing"; |
38 | 38 |
| 39 // Enables additional visual feedback to touch input. |
| 40 const char kEnableTouchFeedback[] = "enable-touch-feedback"; |
| 41 |
39 // The language file that we want to try to open. Of the form | 42 // The language file that we want to try to open. Of the form |
40 // language[-country] where language is the 2 letter code from ISO-639. | 43 // language[-country] where language is the 2 letter code from ISO-639. |
41 const char kLang[] = "lang"; | 44 const char kLang[] = "lang"; |
42 | 45 |
43 // Disable ui::MessageBox. This is useful when running as part of scripts that | 46 // Disable ui::MessageBox. This is useful when running as part of scripts that |
44 // do not have a user interface. | 47 // do not have a user interface. |
45 const char kNoMessageBox[] = "no-message-box"; | 48 const char kNoMessageBox[] = "no-message-box"; |
46 | 49 |
47 // On Windows only: requests that Chrome connect to the running Metro viewer | 50 // On Windows only: requests that Chrome connect to the running Metro viewer |
48 // process. | 51 // process. |
49 const char kViewerConnect[] = "connect-to-metro-viewer"; | 52 const char kViewerConnect[] = "connect-to-metro-viewer"; |
50 | 53 |
51 } // namespace switches | 54 } // namespace switches |
OLD | NEW |