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

Side by Side Diff: ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.html

Issue 1406023003: Elim cr_elements/v1_0 subdirectory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 2 <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-icons/iron-icons.h tml"> 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-icons/social-icons .html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons .html">
5 <link rel="import" href="cr_policy_indicator_behavior.html"> 5 <link rel="import" href="cr_policy_indicator_behavior.html">
6 <link rel="import" href="cr_policy_pref_behavior.html"> 6 <link rel="import" href="cr_policy_pref_behavior.html">
7 7
8 <dom-module id="cr-policy-pref-indicator"> 8 <dom-module id="cr-policy-pref-indicator">
9 <link rel="import" type="css" href="cr_policy_indicator.css"> 9 <link rel="import" type="css" href="cr_policy_indicator.css">
10 <template> 10 <template>
11 <div class="layout horizontal"> 11 <div class="layout horizontal">
12 <iron-icon id="indicator" 12 <iron-icon id="indicator"
13 hidden$="[[!isIndicatorVisible(indicatorType)]]" 13 hidden$="[[!isIndicatorVisible(indicatorType)]]"
14 icon="[[getPolicyIndicatorIcon(indicatorType)]]" 14 icon="[[getPolicyIndicatorIcon(indicatorType)]]"
15 title$="[[getPolicyIndicatorTooltip(indicatorType, pref, controllingUs er)]]"> 15 title$="[[getPolicyIndicatorTooltip(indicatorType, pref, controllingUs er)]]">
16 </iron-icon> 16 </iron-icon>
17 </div> 17 </div>
18 </template> 18 </template>
19 <script src="cr_policy_pref_indicator.js"></script> 19 <script src="cr_policy_pref_indicator.js"></script>
20 </dom-module> 20 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698