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

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

Issue 1960323002: MD Settings: Use shared cr_elements iconset when possible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CrIconsCrOS
Patch Set: rebase Created 4 years, 7 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/cr_elements/icons.html">
1 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html"> <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon /iron-icon.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 9 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
9 10
10 <dom-module id="settings-edit-dictionary-page"> 11 <dom-module id="settings-edit-dictionary-page">
11 <template> 12 <template>
12 <style include="settings-shared"> 13 <style include="settings-shared">
13 :host { 14 :host {
(...skipping 29 matching lines...) Expand all
43 </paper-button> 44 </paper-button>
44 </div> 45 </div>
45 </div> 46 </div>
46 <div class="settings-box block"> 47 <div class="settings-box block">
47 <h2>$i18n{customDictionaryWords}</h2> 48 <h2>$i18n{customDictionaryWords}</h2>
48 <div class="list-frame"> 49 <div class="list-frame">
49 <iron-list id="list" items="{{words_}}"> 50 <iron-list id="list" items="{{words_}}">
50 <template> 51 <template>
51 <div class="list-item"> 52 <div class="list-item">
52 <div class="word">[[item]]</div> 53 <div class="word">[[item]]</div>
53 <paper-icon-button icon="clear" on-tap="onRemoveWordTap_"> 54 <paper-icon-button icon="cr:clear" on-tap="onRemoveWordTap_">
54 </paper-icon-button> 55 </paper-icon-button>
55 </div> 56 </div>
56 </template> 57 </template>
57 </iron-list> 58 </iron-list>
58 </div> 59 </div>
59 </div> 60 </div>
60 </template> 61 </template>
61 <script src="edit_dictionary_page.js"></script> 62 <script src="edit_dictionary_page.js"></script>
62 </dom-module> 63 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698