| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.html
"> |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 6 <link rel="import" href="/controls/settings_checkbox.html"> | 6 <link rel="import" href="/controls/settings_checkbox.html"> |
| 7 <link rel="import" href="/controls/settings_dropdown_menu.html"> | 7 <link rel="import" href="/controls/settings_dropdown_menu.html"> |
| 8 <link rel="import" href="/i18n_setup.html"> | 8 <link rel="import" href="/i18n_setup.html"> |
| 9 <link rel="import" href="/route.html"> | 9 <link rel="import" href="/route.html"> |
| 10 <link rel="import" href="/settings_shared_css.html"> | 10 <link rel="import" href="/settings_shared_css.html"> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 </template> | 44 </template> |
| 45 <template is="dom-if" if="[[showDiamondKey_]]"> | 45 <template is="dom-if" if="[[showDiamondKey_]]"> |
| 46 <div class="settings-box" id="diamondKey"> | 46 <div class="settings-box" id="diamondKey"> |
| 47 <div class="start">$i18n{keyboardKeyDiamond}</div> | 47 <div class="start">$i18n{keyboardKeyDiamond}</div> |
| 48 <settings-dropdown-menu | 48 <settings-dropdown-menu |
| 49 pref="{{prefs.settings.language.remap_diamond_key_to}}" | 49 pref="{{prefs.settings.language.remap_diamond_key_to}}" |
| 50 menu-options="[[keyMapTargets_]]"> | 50 menu-options="[[keyMapTargets_]]"> |
| 51 </settings-dropdown-menu> | 51 </settings-dropdown-menu> |
| 52 </div> | 52 </div> |
| 53 </template> | 53 </template> |
| 54 <div class="settings-box two-line"> | 54 <div class="settings-box"> |
| 55 <settings-checkbox | 55 <settings-checkbox |
| 56 pref="{{prefs.settings.language.send_function_keys}}" | 56 pref="{{prefs.settings.language.send_function_keys}}" |
| 57 label="$i18n{keyboardSendFunctionKeys}" | 57 label="$i18n{keyboardSendFunctionKeys}" |
| 58 sub-label="$i18n{keyboardSendFunctionKeysDescription}"> | 58 sub-label="$i18n{keyboardSendFunctionKeysDescription}"> |
| 59 </settings-checkbox> | 59 </settings-checkbox> |
| 60 </div> | 60 </div> |
| 61 <div class="settings-box"> | 61 <div class="settings-box"> |
| 62 <settings-checkbox | 62 <settings-checkbox |
| 63 pref="{{prefs.settings.language.xkb_auto_repeat_enabled_r2}}" | 63 pref="{{prefs.settings.language.xkb_auto_repeat_enabled_r2}}" |
| 64 label="$i18n{keyboardEnableAutoRepeat}"> | 64 label="$i18n{keyboardEnableAutoRepeat}"> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 <div id="keyboardOverlay" class="settings-box" | 96 <div id="keyboardOverlay" class="settings-box" |
| 97 on-tap="onShowKeyboardShortcutsOverlayTap_" actionable> | 97 on-tap="onShowKeyboardShortcutsOverlayTap_" actionable> |
| 98 $i18n{showKeyboardShortcutsOverlay} | 98 $i18n{showKeyboardShortcutsOverlay} |
| 99 </div> | 99 </div> |
| 100 <div class="settings-box" on-tap="onShowLanguageInputTap_" actionable> | 100 <div class="settings-box" on-tap="onShowLanguageInputTap_" actionable> |
| 101 $i18n{keyboardShowLanguageAndInput} | 101 $i18n{keyboardShowLanguageAndInput} |
| 102 </div> | 102 </div> |
| 103 </template> | 103 </template> |
| 104 <script src="keyboard.js"></script> | 104 <script src="keyboard.js"></script> |
| 105 </dom-module> | 105 </dom-module> |
| OLD | NEW |