OLD | NEW |
1 // Copyright 2014 The ChromeOS IME Authors. All Rights Reserved. | 1 // Copyright 2014 The ChromeOS IME Authors. All Rights Reserved. |
2 // limitations under the License. | 2 // limitations under the License. |
3 // See the License for the specific language governing permissions and | 3 // See the License for the specific language governing permissions and |
4 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 4 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
5 // distributed under the License is distributed on an "AS-IS" BASIS, | 5 // distributed under the License is distributed on an "AS-IS" BASIS, |
6 // Unless required by applicable law or agreed to in writing, software | 6 // Unless required by applicable law or agreed to in writing, software |
7 // | 7 // |
8 // http://www.apache.org/licenses/LICENSE-2.0 | 8 // http://www.apache.org/licenses/LICENSE-2.0 |
9 // | 9 // |
10 // You may obtain a copy of the License at | 10 // You may obtain a copy of the License at |
11 // you may not use this file except in compliance with the License. | 11 // you may not use this file except in compliance with the License. |
12 // Licensed under the Apache License, Version 2.0 (the "License"); | 12 // Licensed under the Apache License, Version 2.0 (the "License"); |
13 // | 13 // |
14 goog.provide('i18n.input.chrome.inputview.Css'); | 14 goog.provide('i18n.input.chrome.inputview.Css'); |
15 | 15 |
16 | 16 |
17 /** | 17 /** |
18 * The css used for input view keyboard. | 18 * The css used for input view keyboard. |
19 * | 19 * |
20 * @enum {string} | 20 * @enum {string} |
21 */ | 21 */ |
22 i18n.input.chrome.inputview.Css = { | 22 i18n.input.chrome.inputview.Css = { |
23 A11Y: goog.getCssName('inputview-a11y'), | 23 A11Y: goog.getCssName('inputview-a11y'), |
| 24 ACCENT_CONTAINER: goog.getCssName('inputview-accent-container'), |
| 25 ACCENT_ROW: goog.getCssName('inputview-accent-row'), |
| 26 ACCENT_EMPTY_KEY: goog.getCssName('inputview-accent-empty-key'), |
| 27 ACCENT_KEY: goog.getCssName('inputview-accent-key'), |
24 ALTDATA_COVER: goog.getCssName('inputview-altdata-cover'), | 28 ALTDATA_COVER: goog.getCssName('inputview-altdata-cover'), |
25 ALTDATA_KEY: goog.getCssName('inputview-altdata-key'), | 29 ALTDATA_KEY: goog.getCssName('inputview-altdata-key'), |
26 ALTDATA_SEPARATOR: goog.getCssName('inputview-altdata-separator'), | 30 ALTDATA_SEPARATOR: goog.getCssName('inputview-altdata-separator'), |
27 ALTDATA_VIEW: goog.getCssName('inputview-altdata-view'), | 31 ALTDATA_VIEW: goog.getCssName('inputview-altdata-view'), |
28 ALTGR_CONTENT: goog.getCssName('inputview-ac'), | 32 ALTGR_CONTENT: goog.getCssName('inputview-ac'), |
29 ARROW_KEY: goog.getCssName('inputview-arrow-key'), | 33 ARROW_KEY: goog.getCssName('inputview-arrow-key'), |
30 BACKSPACE_ICON: goog.getCssName('inputview-backspace-icon'), | 34 BACKSPACE_ICON: goog.getCssName('inputview-backspace-icon'), |
31 BACK_TO_KEYBOARD_ICON: goog.getCssName('inputview-back-to-keyboard'), | 35 BACK_TO_KEYBOARD_ICON: goog.getCssName('inputview-back-to-keyboard'), |
32 BOLD_ICON: goog.getCssName('inputview-bold-icon'), | 36 BOLD_ICON: goog.getCssName('inputview-bold-icon'), |
33 CANDIDATE: goog.getCssName('inputview-candidate'), | 37 CANDIDATE: goog.getCssName('inputview-candidate'), |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 VOICE_OPACITY: goog.getCssName('inputview-voice-opacity'), | 212 VOICE_OPACITY: goog.getCssName('inputview-voice-opacity'), |
209 VOICE_OPACITY_NONE: goog.getCssName('inputview-voice-opacity-none'), | 213 VOICE_OPACITY_NONE: goog.getCssName('inputview-voice-opacity-none'), |
210 VOICE_PANEL: goog.getCssName('inputview-voice-panel'), | 214 VOICE_PANEL: goog.getCssName('inputview-voice-panel'), |
211 VOICE_PRIVACY_INFO: goog.getCssName('inputview-voice-privacy-info'), | 215 VOICE_PRIVACY_INFO: goog.getCssName('inputview-voice-privacy-info'), |
212 VOICE_PRIVACY_TEXT: goog.getCssName('inputview-voice-privacy-text'), | 216 VOICE_PRIVACY_TEXT: goog.getCssName('inputview-voice-privacy-text'), |
213 VOICE_SEPARATOR: goog.getCssName('inputview-voice-separator'), | 217 VOICE_SEPARATOR: goog.getCssName('inputview-voice-separator'), |
214 VOICE_VIEW: goog.getCssName('inputview-voice-view'), | 218 VOICE_VIEW: goog.getCssName('inputview-voice-view'), |
215 WRAPPER: goog.getCssName('inputview-wrapper') | 219 WRAPPER: goog.getCssName('inputview-wrapper') |
216 }; | 220 }; |
217 | 221 |
OLD | NEW |