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

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

Issue 1477963002: dom-if cr-policy-pref-indicator in settings_checkbox/input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_560432_settings_benchmark_2c_test
Patch Set: Created 5 years 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
« no previous file with comments | « chrome/browser/resources/settings/controls/settings_input.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <iron-icon id="indicator"
12 <iron-icon id="indicator" 12 hidden$="[[!isIndicatorVisible(indicatorType)]]"
13 hidden$="[[!isIndicatorVisible(indicatorType)]]" 13 icon="[[getPolicyIndicatorIcon(indicatorType)]]"
14 icon="[[getPolicyIndicatorIcon(indicatorType)]]" 14 title$="[[getPolicyIndicatorTooltip(indicatorType, pref, controllingUser )]]">
15 title$="[[getPolicyIndicatorTooltip(indicatorType, pref, controllingUs er)]]"> 15 </iron-icon>
16 </iron-icon>
17 </div>
18 </template> 16 </template>
19 <script src="cr_policy_pref_indicator.js"></script> 17 <script src="cr_policy_pref_indicator.js"></script>
20 </dom-module> 18 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/controls/settings_input.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698