Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(781)

Side by Side Diff: chrome/browser/resources/settings/languages_page/languages_page.html

Issue 2699063003: MD Settings: fix page to work with vulcanize (when it lands and sticks) (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 on-tap="onInputMethodTap_" on-keypress="onInputMethodTap_" 164 on-tap="onInputMethodTap_" on-keypress="onInputMethodTap_"
165 actionable tabindex="0"> 165 actionable tabindex="0">
166 <div class="start"> 166 <div class="start">
167 <div>[[item.displayName]]</div> 167 <div>[[item.displayName]]</div>
168 <div class="explain-selected" 168 <div class="explain-selected"
169 hidden="[[!isCurrentInputMethod_( 169 hidden="[[!isCurrentInputMethod_(
170 item.id, languages.inputMethods.currentId)]]"> 170 item.id, languages.inputMethods.currentId)]]">
171 $i18n{inputMethodEnabled} 171 $i18n{inputMethodEnabled}
172 </div> 172 </div>
173 </div> 173 </div>
174 <paper-icon-button icon="cr:settings" 174 <paper-icon-button icon="cr:settings_icon"
175 on-tap="onInputMethodOptionsTap_" 175 on-tap="onInputMethodOptionsTap_"
176 hidden="[[!item.hasOptionsPage]]"> 176 hidden="[[!item.hasOptionsPage]]">
177 </paper-icon-button> 177 </paper-icon-button>
178 </div> 178 </div>
179 </template> 179 </template>
180 <div class="list-item"> 180 <div class="list-item">
181 <a is="action-link" class="list-button" 181 <a is="action-link" class="list-button"
182 id="manageInputMethods" 182 id="manageInputMethods"
183 on-tap="onManageInputMethodsTap_"> 183 on-tap="onManageInputMethodsTap_">
184 $i18n{manageInputMethods} 184 $i18n{manageInputMethods}
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 </if> 293 </if>
294 </settings-animated-pages> 294 </settings-animated-pages>
295 <template is="dom-if" if="[[showAddLanguagesDialog_]]" restamp> 295 <template is="dom-if" if="[[showAddLanguagesDialog_]]" restamp>
296 <settings-add-languages-dialog languages="{{languages}}" 296 <settings-add-languages-dialog languages="{{languages}}"
297 language-helper="[[languageHelper]]"> 297 language-helper="[[languageHelper]]">
298 </settings-add-languages-dialog> 298 </settings-add-languages-dialog>
299 </template> 299 </template>
300 </template> 300 </template>
301 <script src="languages_page.js"></script> 301 <script src="languages_page.js"></script>
302 </dom-module> 302 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698