OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #ifndef UI_KEYBOARD_KEYBOARD_SWITCHES_H_ | 5 #ifndef UI_KEYBOARD_KEYBOARD_SWITCHES_H_ |
6 #define UI_KEYBOARD_KEYBOARD_SWITCHES_H_ | 6 #define UI_KEYBOARD_KEYBOARD_SWITCHES_H_ |
7 | 7 |
8 #include "ui/keyboard/keyboard_export.h" | 8 #include "ui/keyboard/keyboard_export.h" |
9 | 9 |
10 namespace keyboard { | 10 namespace keyboard { |
(...skipping 21 matching lines...) Expand all Loading... | |
32 | 32 |
33 // Gesture typing flag for the virtual keyboard. | 33 // Gesture typing flag for the virtual keyboard. |
34 KEYBOARD_EXPORT extern const char kGestureTyping[]; | 34 KEYBOARD_EXPORT extern const char kGestureTyping[]; |
35 | 35 |
36 // Enables gesture typing for the virtual keyboard. | 36 // Enables gesture typing for the virtual keyboard. |
37 KEYBOARD_EXPORT extern const char kGestureTypingEnabled[]; | 37 KEYBOARD_EXPORT extern const char kGestureTypingEnabled[]; |
38 | 38 |
39 // Disables gesture typing for the virtual keyboard. | 39 // Disables gesture typing for the virtual keyboard. |
40 KEYBOARD_EXPORT extern const char kGestureTypingDisabled[]; | 40 KEYBOARD_EXPORT extern const char kGestureTypingDisabled[]; |
41 | 41 |
42 // Gesture selection for the virtual keyboard. | 42 // Gesture editing for the virtual keyboard. |
bshe
2015/05/12 14:58:59
nit: It would be easier to read if you could speci
rsadam
2015/05/12 15:16:15
Done.
| |
43 KEYBOARD_EXPORT extern const char kGestureSelection[]; | 43 KEYBOARD_EXPORT extern const char kGestureEditing[]; |
44 | 44 |
45 // Enables gesture selection for the virtual keyboard. | 45 // Enables gesture editing for the virtual keyboard. |
46 KEYBOARD_EXPORT extern const char kGestureSelectionEnabled[]; | 46 KEYBOARD_EXPORT extern const char kGestureEditingEnabled[]; |
47 | 47 |
48 // Disables gesture selection for the virtual keyboard. | 48 // Disables gesture editing for the virtual keyboard. |
49 KEYBOARD_EXPORT extern const char kGestureSelectionDisabled[]; | 49 KEYBOARD_EXPORT extern const char kGestureEditingDisabled[]; |
50 | |
51 // Gesture deletion for the virtual keyboard. | |
52 KEYBOARD_EXPORT extern const char kGestureDeletion[]; | |
53 | |
54 // Enables gesture deletion for the virtual keyboard. | |
55 KEYBOARD_EXPORT extern const char kGestureDeletionEnabled[]; | |
56 | |
57 // Disables gesture deletion for the virtual keyboard. | |
58 KEYBOARD_EXPORT extern const char kGestureDeletionDisabled[]; | |
59 | 50 |
60 // Enables the virtual keyboard. | 51 // Enables the virtual keyboard. |
61 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboard[]; | 52 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboard[]; |
62 | 53 |
63 // Floating virtual keyboard flag. | 54 // Floating virtual keyboard flag. |
64 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboard[]; | 55 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboard[]; |
65 | 56 |
66 // Disable floating virtual keyboard. | 57 // Disable floating virtual keyboard. |
67 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboardDisabled[]; | 58 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboardDisabled[]; |
68 | 59 |
(...skipping 10 matching lines...) Expand all Loading... | |
79 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboardOverscroll[]; | 70 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboardOverscroll[]; |
80 | 71 |
81 // Disable automatic showing/hiding of the keyboard based on the devices plugged | 72 // Disable automatic showing/hiding of the keyboard based on the devices plugged |
82 // in. | 73 // in. |
83 KEYBOARD_EXPORT extern const char kDisableSmartVirtualKeyboard[]; | 74 KEYBOARD_EXPORT extern const char kDisableSmartVirtualKeyboard[]; |
84 | 75 |
85 } // namespace switches | 76 } // namespace switches |
86 } // namespace keyboard | 77 } // namespace keyboard |
87 | 78 |
88 #endif // UI_KEYBOARD_KEYBOARD_SWITCHES_H_ | 79 #endif // UI_KEYBOARD_KEYBOARD_SWITCHES_H_ |
OLD | NEW |