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

Unified Diff: ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.html

Issue 1376383003: Add cr-policy-network-indicator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_521791_network_indicators_b
Patch Set: Rebase + fix WS 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 side-by-side diff with in-line comments
Download patch
Index: ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.html
diff --git a/ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.html b/ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.html
similarity index 74%
copy from ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.html
copy to ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.html
index 56bc23d1d622e2f4cabc73c17858f61a0b536b58..377786542edffc7211156f731f6b5f6da7c5fe98 100644
--- a/ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.html
+++ b/ui/webui/resources/cr_elements/policy/cr_policy_network_indicator.html
@@ -3,18 +3,18 @@
<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons.html">
<link rel="import" href="cr_policy_indicator_behavior.html">
-<link rel="import" href="cr_policy_pref_behavior.html">
+<link rel="import" href="cr_policy_network_behavior.html">
-<dom-module id="cr-policy-pref-indicator">
+<dom-module id="cr-policy-network-indicator">
<link rel="import" type="css" href="cr_policy_indicator.css">
<template>
<div class="layout horizontal">
<iron-icon id="indicator"
hidden$="[[!isIndicatorVisible(indicatorType)]]"
icon="[[getPolicyIndicatorIcon(indicatorType)]]"
- title$="[[getPolicyIndicatorTooltip(indicatorType, pref, controllingUser)]]">
+ title$="[[getTooltip_(indicatorType, property, recommended)]]">
</iron-icon>
</div>
</template>
- <script src="cr_policy_pref_indicator.js"></script>
+ <script src="cr_policy_network_indicator.js"></script>
</dom-module>

Powered by Google App Engine
This is Rietveld 408576698