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

Side by Side Diff: ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.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="cr_policy_indicator_behavior.html"> 4 <link rel="import" href="cr_policy_indicator_behavior.html">
5 <link rel="import" href="cr_policy_pref_behavior.html"> 5 <link rel="import" href="cr_policy_pref_behavior.html">
6 6
7 <dom-module id="cr-policy-pref-indicator"> 7 <dom-module id="cr-policy-pref-indicator">
8 <link rel="import" type="css" href="cr_policy_indicator.css"> 8 <link rel="import" type="css" href="cr_policy_indicator.css">
9 <template> 9 <template>
10 <iron-icon id="indicator" 10 <iron-icon id="indicator"
11 hidden$="[[!isIndicatorVisible(indicatorType)]]" 11 hidden$="[[!isIndicatorVisible(indicatorType)]]"
12 icon="[[getPolicyIndicatorIcon(indicatorType)]]" 12 icon="[[getPolicyIndicatorIcon(indicatorType)]]"
13 title$="[[getPolicyIndicatorTooltip(indicatorType, pref, controllingUser )]]"> 13 title$="[[getPolicyIndicatorTooltip(indicatorType, pref, controllingUser )]]">
14 </iron-icon> 14 </iron-icon>
15 </template> 15 </template>
16 <script src="cr_policy_pref_indicator.js"></script> 16 <script src="cr_policy_pref_indicator.js"></script>
17 </dom-module> 17 </dom-module>
OLDNEW
« no previous file with comments | « ui/webui/resources/cr_elements/policy/cr_policy_indicator_behavior.js ('k') | ui/webui/resources/cr_elements_resources.grdp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698