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 // Constants used for the input API and the Windows API. | 5 // Constants used for the input API and the Windows API. |
6 | 6 |
7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ |
8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ |
9 | 9 |
10 namespace extension_input_module_constants { | 10 namespace extension_input_module_constants { |
(...skipping 20 matching lines...) Expand all Loading... |
31 extern const char kParentIdKey[]; | 31 extern const char kParentIdKey[]; |
32 extern const char kPropertiesKey[]; | 32 extern const char kPropertiesKey[]; |
33 extern const char kSegmentsKey[]; | 33 extern const char kSegmentsKey[]; |
34 extern const char kSelectionEndKey[]; | 34 extern const char kSelectionEndKey[]; |
35 extern const char kSelectionStartKey[]; | 35 extern const char kSelectionStartKey[]; |
36 extern const char kStartKey[]; | 36 extern const char kStartKey[]; |
37 extern const char kStyleDoubleUnderline[]; | 37 extern const char kStyleDoubleUnderline[]; |
38 extern const char kStyleKey[]; | 38 extern const char kStyleKey[]; |
39 extern const char kStyleUnderline[]; | 39 extern const char kStyleUnderline[]; |
40 extern const char kTextKey[]; | 40 extern const char kTextKey[]; |
| 41 extern const char kUsageBodyKey[]; |
| 42 extern const char kUsageKey[]; |
| 43 extern const char kUsageTitleKey[]; |
41 extern const char kVerticalKey[]; | 44 extern const char kVerticalKey[]; |
42 extern const char kVisibleKey[]; | 45 extern const char kVisibleKey[]; |
43 | 46 |
44 }; // namespace extension_input_module_constants | 47 }; // namespace extension_input_module_constants |
45 | 48 |
46 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ | 49 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ |
OLD | NEW |