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

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

Issue 1369403006: Add cr-policy-network-indicator and add to internet settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Separate policy indicator strings 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
(Empty)
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">
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">
5
6 <dom-module id="cr-policy-indicator">
7 <link rel="import" type="css" href="cr_policy_indicator.css">
8 <template>
9 <div class="layout horizontal">
10 <iron-icon id="indicator"
11 hidden$="[[!isIndicatorVisible_(indicatorType)]]"
12 icon="[[getIcon_(indicatorType)]]"
13 title$="[[getTooltipText_(indicatorType, pref, controllingUser)]]">
14 </iron-icon>
15 </div>
16 </template>
17 <script src="cr_policy_indicator.js"></script>
18 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698