| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 3 <link rel="import" href="chrome://resources/html/assert.html"> | 3 <link rel="import" href="chrome://resources/html/assert.html"> |
| 4 <link rel="import" href="chrome://resources/html/cr.html"> | 4 <link rel="import" href="chrome://resources/html/cr.html"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 </div> | 179 </div> |
| 180 </template> | 180 </template> |
| 181 <div class="list-item"> | 181 <div class="list-item"> |
| 182 <a is="action-link" class="list-button" | 182 <a is="action-link" class="list-button" |
| 183 id="manageInputMethods" | 183 id="manageInputMethods" |
| 184 on-tap="onManageInputMethodsTap_"> | 184 on-tap="onManageInputMethodsTap_"> |
| 185 $i18n{manageInputMethods} | 185 $i18n{manageInputMethods} |
| 186 </a> | 186 </a> |
| 187 </div> | 187 </div> |
| 188 </div> | 188 </div> |
| 189 <div class="settings-box"> |
| 190 <settings-toggle-button class="start" |
| 191 pref="{{prefs.settings.language.ime_menu_activated}}" |
| 192 label="$i18n{showImeMenu}"> |
| 193 </settings-toggle-button> |
| 194 </div> |
| 189 </iron-collapse> | 195 </iron-collapse> |
| 190 </if> | 196 </if> |
| 191 <if expr="not is_macosx"> | 197 <if expr="not is_macosx"> |
| 192 <div id="spellCheckSubpageTrigger" | 198 <div id="spellCheckSubpageTrigger" |
| 193 class$="settings-box [[getSpellCheckListTwoLine_( | 199 class$="settings-box [[getSpellCheckListTwoLine_( |
| 194 spellCheckSecondaryText_)]]" | 200 spellCheckSecondaryText_)]]" |
| 195 actionable on-tap="toggleExpandButton_"> | 201 actionable on-tap="toggleExpandButton_"> |
| 196 <div class="start"> | 202 <div class="start"> |
| 197 <div>$i18n{spellCheckListTitle}</div> | 203 <div>$i18n{spellCheckListTitle}</div> |
| 198 <div class="secondary">[[spellCheckSecondaryText_]]</div> | 204 <div class="secondary">[[spellCheckSecondaryText_]]</div> |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 </if> | 301 </if> |
| 296 </settings-animated-pages> | 302 </settings-animated-pages> |
| 297 <template is="dom-if" if="[[showAddLanguagesDialog_]]" restamp> | 303 <template is="dom-if" if="[[showAddLanguagesDialog_]]" restamp> |
| 298 <settings-add-languages-dialog languages="{{languages}}" | 304 <settings-add-languages-dialog languages="{{languages}}" |
| 299 language-helper="[[languageHelper]]"> | 305 language-helper="[[languageHelper]]"> |
| 300 </settings-add-languages-dialog> | 306 </settings-add-languages-dialog> |
| 301 </template> | 307 </template> |
| 302 </template> | 308 </template> |
| 303 <script src="languages_page.js"></script> | 309 <script src="languages_page.js"></script> |
| 304 </dom-module> | 310 </dom-module> |
| OLD | NEW |