| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 <link rel="import" href="../controls/settings_slider.html"> | 5 <link rel="import" href="../controls/settings_slider.html"> |
| 6 <link rel="import" href="../controls/settings_toggle_button.html"> | 6 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 7 <link rel="import" href="../i18n_setup.html"> | 7 <link rel="import" href="../i18n_setup.html"> |
| 8 <link rel="import" href="../route.html"> | 8 <link rel="import" href="../route.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 10 <link rel="import" href="../settings_vars_css.html"> | 10 <link rel="import" href="../settings_vars_css.html"> |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 199 |
| 200 <h2>$i18n{audioHeading}</h2> | 200 <h2>$i18n{audioHeading}</h2> |
| 201 <div class="settings-box block first"> | 201 <div class="settings-box block first"> |
| 202 <settings-toggle-button | 202 <settings-toggle-button |
| 203 pref="{{prefs.settings.a11y.mono_audio}}" | 203 pref="{{prefs.settings.a11y.mono_audio}}" |
| 204 label="$i18n{monoAudioLabel}"> | 204 label="$i18n{monoAudioLabel}"> |
| 205 </settings-toggle-button> | 205 </settings-toggle-button> |
| 206 </div> | 206 </div> |
| 207 | 207 |
| 208 <template is="dom-if" if="[[!isGuest_]]"> | 208 <template is="dom-if" if="[[!isGuest_]]"> |
| 209 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable> | 209 <a class="settings-box two-line" actionable tabindex="-1" target="_blank" |
| 210 href="https://chrome.google.com/webstore/category/collection/accessibi
lity"> |
| 210 <div class="start"> | 211 <div class="start"> |
| 211 $i18n{additionalFeaturesTitle} | 212 $i18n{additionalFeaturesTitle} |
| 212 <div class="secondary" id="moreFeaturesSecondary"> | 213 <div class="secondary" id="moreFeaturesSecondary"> |
| 213 $i18n{a11yWebStore} | 214 $i18n{a11yWebStore} |
| 214 </div> | 215 </div> |
| 215 </div> | 216 </div> |
| 216 <button class="icon-external" is="paper-icon-button-light" | 217 <button class="icon-external" is="paper-icon-button-light" |
| 217 aria-label="$i18n{additionalFeaturesTitle}" | 218 aria-label="$i18n{additionalFeaturesTitle}" |
| 218 aria-describedby="moreFeaturesSecondary"></button> | 219 aria-describedby="moreFeaturesSecondary"></button> |
| 219 </div> | 220 </a> |
| 220 </template> | 221 </template> |
| 221 </template> | 222 </template> |
| 222 <script src="manage_a11y_page.js"></script> | 223 <script src="manage_a11y_page.js"></script> |
| 223 </dom-module> | 224 </dom-module> |
| OLD | NEW |