| OLD | NEW |
| 1 // Copyright (c) 2011 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 kAltKeyKey[] = "altKey"; | |
| 10 const char kAnnotationKey[] = "annotation"; | 9 const char kAnnotationKey[] = "annotation"; |
| 11 const char kAuxiliaryTextKey[] = "auxiliaryText"; | 10 const char kAuxiliaryTextKey[] = "auxiliaryText"; |
| 12 const char kAuxiliaryTextVisibleKey[] = "auxiliaryTextVisible"; | 11 const char kAuxiliaryTextVisibleKey[] = "auxiliaryTextVisible"; |
| 13 const char kCandidateIdKey[] = "candidateID"; | 12 const char kCandidateIdKey[] = "candidateID"; |
| 14 const char kCandidateKey[] = "candidate"; | 13 const char kCandidateKey[] = "candidate"; |
| 15 const char kCandidatesKey[] = "candidates"; | 14 const char kCandidatesKey[] = "candidates"; |
| 16 const char kCheckedKey[] = "checked"; | 15 const char kCheckedKey[] = "checked"; |
| 17 const char kContextIdKey[] = "contextID"; | 16 const char kContextIdKey[] = "contextID"; |
| 18 const char kCtrlKeyKey[] = "ctrlKey"; | |
| 19 const char kCursorKey[] = "cursor"; | 17 const char kCursorKey[] = "cursor"; |
| 20 const char kCursorVisibleKey[] = "cursorVisible"; | 18 const char kCursorVisibleKey[] = "cursorVisible"; |
| 21 const char kEnabledKey[] = "enabled"; | 19 const char kEnabledKey[] = "enabled"; |
| 22 const char kEndKey[] = "end"; | 20 const char kEndKey[] = "end"; |
| 23 const char kEngineIdKey[] = "engineID"; | 21 const char kEngineIdKey[] = "engineID"; |
| 24 const char kIconKey[] = "icon"; | |
| 25 const char kIdKey[] = "id"; | 22 const char kIdKey[] = "id"; |
| 26 const char kItemsKey[] = "items"; | 23 const char kItemsKey[] = "items"; |
| 27 const char kKeyKey[] = "key"; | 24 const char kKeyKey[] = "key"; |
| 28 const char kLabelKey[] = "label"; | 25 const char kLabelKey[] = "label"; |
| 29 const char kPageSizeKey[] = "pageSize"; | 26 const char kPageSizeKey[] = "pageSize"; |
| 30 const char kParentIdKey[] = "parentId"; | 27 const char kParentIdKey[] = "parentId"; |
| 31 const char kPropertiesKey[] = "properties"; | 28 const char kPropertiesKey[] = "properties"; |
| 32 const char kSegmentsKey[] = "segments"; | 29 const char kSegmentsKey[] = "segments"; |
| 33 const char kSelectionEndKey[] = "selectionEnd"; | 30 const char kSelectionEndKey[] = "selectionEnd"; |
| 34 const char kSelectionStartKey[] = "selectionStart"; | 31 const char kSelectionStartKey[] = "selectionStart"; |
| 35 const char kShiftKeyKey[] = "shiftKey"; | |
| 36 const char kShortcutKey[] = "shortcut"; | |
| 37 const char kStartKey[] = "start"; | 32 const char kStartKey[] = "start"; |
| 38 const char kStyleDoubleUnderline[] = "doubleUnderline"; | 33 const char kStyleDoubleUnderline[] = "doubleUnderline"; |
| 39 const char kStyleKey[] = "style"; | 34 const char kStyleKey[] = "style"; |
| 40 const char kStyleUnderline[] = "underline"; | 35 const char kStyleUnderline[] = "underline"; |
| 41 const char kTextKey[] = "text"; | 36 const char kTextKey[] = "text"; |
| 42 const char kVerticalKey[] = "vertical"; | 37 const char kVerticalKey[] = "vertical"; |
| 43 const char kVisibleKey[] = "visible"; | 38 const char kVisibleKey[] = "visible"; |
| 44 | 39 |
| 45 } // namespace extension_input_module_constants | 40 } // namespace extension_input_module_constants |
| OLD | NEW |