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 "chrome/browser/extensions/extension_input_module_constants.h" | 5 #include "chrome/browser/extensions/extension_input_module_constants.h" |
6 | 6 |
7 namespace extension_input_module_constants { | 7 namespace extension_input_module_constants { |
8 | 8 |
9 const char kAnnotationKey[] = "annotation"; | 9 const char kAnnotationKey[] = "annotation"; |
10 const char kAuxiliaryTextKey[] = "auxiliaryText"; | 10 const char kAuxiliaryTextKey[] = "auxiliaryText"; |
(...skipping 16 matching lines...) Expand all Loading... |
27 const char kParentIdKey[] = "parentId"; | 27 const char kParentIdKey[] = "parentId"; |
28 const char kPropertiesKey[] = "properties"; | 28 const char kPropertiesKey[] = "properties"; |
29 const char kSegmentsKey[] = "segments"; | 29 const char kSegmentsKey[] = "segments"; |
30 const char kSelectionEndKey[] = "selectionEnd"; | 30 const char kSelectionEndKey[] = "selectionEnd"; |
31 const char kSelectionStartKey[] = "selectionStart"; | 31 const char kSelectionStartKey[] = "selectionStart"; |
32 const char kStartKey[] = "start"; | 32 const char kStartKey[] = "start"; |
33 const char kStyleDoubleUnderline[] = "doubleUnderline"; | 33 const char kStyleDoubleUnderline[] = "doubleUnderline"; |
34 const char kStyleKey[] = "style"; | 34 const char kStyleKey[] = "style"; |
35 const char kStyleUnderline[] = "underline"; | 35 const char kStyleUnderline[] = "underline"; |
36 const char kTextKey[] = "text"; | 36 const char kTextKey[] = "text"; |
| 37 const char kUsageBodyKey[] = "body"; |
| 38 const char kUsageKey[] = "usage"; |
| 39 const char kUsageTitleKey[] = "title"; |
37 const char kVerticalKey[] = "vertical"; | 40 const char kVerticalKey[] = "vertical"; |
38 const char kVisibleKey[] = "visible"; | 41 const char kVisibleKey[] = "visible"; |
39 | 42 |
40 } // namespace extension_input_module_constants | 43 } // namespace extension_input_module_constants |
OLD | NEW |