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 #pragma once | |
10 | 9 |
11 namespace extension_input_module_constants { | 10 namespace extension_input_module_constants { |
12 | 11 |
13 // Keys used in serializing input data & events. | 12 // Keys used in serializing input data & events. |
14 extern const char kAnnotationKey[]; | 13 extern const char kAnnotationKey[]; |
15 extern const char kAuxiliaryTextKey[]; | 14 extern const char kAuxiliaryTextKey[]; |
16 extern const char kAuxiliaryTextVisibleKey[]; | 15 extern const char kAuxiliaryTextVisibleKey[]; |
17 extern const char kCandidateIdKey[]; | 16 extern const char kCandidateIdKey[]; |
18 extern const char kCandidateKey[]; | 17 extern const char kCandidateKey[]; |
19 extern const char kCandidatesKey[]; | 18 extern const char kCandidatesKey[]; |
(...skipping 18 matching lines...) Expand all Loading... |
38 extern const char kStyleDoubleUnderline[]; | 37 extern const char kStyleDoubleUnderline[]; |
39 extern const char kStyleKey[]; | 38 extern const char kStyleKey[]; |
40 extern const char kStyleUnderline[]; | 39 extern const char kStyleUnderline[]; |
41 extern const char kTextKey[]; | 40 extern const char kTextKey[]; |
42 extern const char kVerticalKey[]; | 41 extern const char kVerticalKey[]; |
43 extern const char kVisibleKey[]; | 42 extern const char kVisibleKey[]; |
44 | 43 |
45 }; // namespace extension_input_module_constants | 44 }; // namespace extension_input_module_constants |
46 | 45 |
47 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ | 46 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_MODULE_CONSTANTS_H_ |
OLD | NEW |