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

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

Issue 1957313002: Material WebUI: Switch to poly-icons to generate iconsets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/cr_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/iron-icon/iron-icon.htm l"> 3 <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-icons/av-icons.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/av-icons.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons .html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons .html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico ns.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/hardware-ico ns.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons. html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons. html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons .html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons .html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h tml"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h tml">
11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-submen u.html"> 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-submen u.html">
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 <iron-icon icon="image:palette" item-icon></iron-icon> 99 <iron-icon icon="image:palette" item-icon></iron-icon>
100 <span i18n-content="appearancePageTitle"></span> 100 <span i18n-content="appearancePageTitle"></span>
101 </div> 101 </div>
102 <if expr="chromeos"> 102 <if expr="chromeos">
103 <div data-section="device" on-tap="openPage_"> 103 <div data-section="device" on-tap="openPage_">
104 <iron-icon icon="hardware:laptop-chromebook" item-icon></iron-icon> 104 <iron-icon icon="hardware:laptop-chromebook" item-icon></iron-icon>
105 <span i18n-content="devicePageTitle"></span> 105 <span i18n-content="devicePageTitle"></span>
106 </div> 106 </div>
107 </if> 107 </if>
108 <div data-section="search" on-tap="openPage_"> 108 <div data-section="search" on-tap="openPage_">
109 <iron-icon icon="cr-icons:search" item-icon></iron-icon> 109 <iron-icon icon="cr:search" item-icon></iron-icon>
110 <span i18n-content="searchPageTitle"></span> 110 <span i18n-content="searchPageTitle"></span>
111 </div> 111 </div>
112 <if expr="not chromeos"> 112 <if expr="not chromeos">
113 <div data-section="defaultBrowser" on-tap="openPage_"> 113 <div data-section="defaultBrowser" on-tap="openPage_">
114 <iron-icon icon="av:web" item-icon></iron-icon> 114 <iron-icon icon="av:web" item-icon></iron-icon>
115 <span i18n-content="defaultBrowser"></span> 115 <span i18n-content="defaultBrowser"></span>
116 </div> 116 </div>
117 </if> 117 </if>
118 <div data-section="onStartup" on-tap="openPage_"> 118 <div data-section="onStartup" on-tap="openPage_">
119 <iron-icon icon="icons:power-settings-new" item-icon></iron-icon> 119 <iron-icon icon="icons:power-settings-new" item-icon></iron-icon>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 <div class="separator"></div> 177 <div class="separator"></div>
178 <paper-submenu data-page="about"> 178 <paper-submenu data-page="about">
179 <div class="menu-trigger" on-tap="openPage_" data-section=""> 179 <div class="menu-trigger" on-tap="openPage_" data-section="">
180 <span i18n-content="aboutPageTitle"></span> 180 <span i18n-content="aboutPageTitle"></span>
181 </div> 181 </div>
182 </paper-submenu> 182 </paper-submenu>
183 </paper-menu> 183 </paper-menu>
184 </template> 184 </template>
185 <script src="settings_menu.js"></script> 185 <script src="settings_menu.js"></script>
186 </dom-module> 186 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698