| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 3 <link rel="import" href="chrome://resources/html/cr.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 3 <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"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 5 <link rel="import" href="../controls/settings_dropdown_menu.html"> | 6 <link rel="import" href="../controls/settings_dropdown_menu.html"> |
| 6 <link rel="import" href="../controls/settings_slider.html"> | 7 <link rel="import" href="../controls/settings_slider.html"> |
| 7 <link rel="import" href="../controls/settings_toggle_button.html"> | 8 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 8 <link rel="import" href="../i18n_setup.html"> | 9 <link rel="import" href="../i18n_setup.html"> |
| 9 <link rel="import" href="../route.html"> | 10 <link rel="import" href="../route.html"> |
| 10 <link rel="import" href="../settings_shared_css.html"> | 11 <link rel="import" href="../settings_shared_css.html"> |
| 11 | 12 |
| 12 <dom-module id="settings-keyboard"> | 13 <dom-module id="settings-keyboard"> |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 aria-label="$i18n{showKeyboardShortcutsOverlay}"></button> | 114 aria-label="$i18n{showKeyboardShortcutsOverlay}"></button> |
| 114 </div> | 115 </div> |
| 115 <div class="settings-box" on-tap="onShowLanguageInputTap_" actionable> | 116 <div class="settings-box" on-tap="onShowLanguageInputTap_" actionable> |
| 116 <div class="start">$i18n{keyboardShowLanguageAndInput}</div> | 117 <div class="start">$i18n{keyboardShowLanguageAndInput}</div> |
| 117 <button class="subpage-arrow" is="paper-icon-button-light" | 118 <button class="subpage-arrow" is="paper-icon-button-light" |
| 118 aria-label="$i18n{keyboardShowLanguageAndInput}"></button> | 119 aria-label="$i18n{keyboardShowLanguageAndInput}"></button> |
| 119 </div> | 120 </div> |
| 120 </template> | 121 </template> |
| 121 <script src="keyboard.js"></script> | 122 <script src="keyboard.js"></script> |
| 122 </dom-module> | 123 </dom-module> |
| OLD | NEW |