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

Unified Diff: ui/webui/resources/cr_elements/policy/cr_policy_indicator_behavior.js

Issue 2682423002: [MD settings] change menu and domain icons (Closed)
Patch Set: updated comment Created 3 years, 10 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_indicator_behavior.js
diff --git a/ui/webui/resources/cr_elements/policy/cr_policy_indicator_behavior.js b/ui/webui/resources/cr_elements/policy/cr_policy_indicator_behavior.js
index 5367637bc34f7f6f612dfeccde990ef57723920c..205465c71d740befa43794ae8a3c50975c69e8e6 100644
--- a/ui/webui/resources/cr_elements/policy/cr_policy_indicator_behavior.js
+++ b/ui/webui/resources/cr_elements/policy/cr_policy_indicator_behavior.js
@@ -54,20 +54,20 @@ var CrPolicyIndicatorBehavior = {
case CrPolicyIndicatorType.NONE:
return icon;
case CrPolicyIndicatorType.PRIMARY_USER:
- icon = 'group';
+ icon = 'cr:group';
break;
case CrPolicyIndicatorType.OWNER:
- icon = 'person';
+ icon = 'cr:person';
break;
case CrPolicyIndicatorType.USER_POLICY:
case CrPolicyIndicatorType.DEVICE_POLICY:
case CrPolicyIndicatorType.RECOMMENDED:
- icon = 'domain';
+ icon = 'cr20:domain';
break;
default:
assertNotReached();
}
- return 'cr:' + icon;
+ return icon;
},
/**
« no previous file with comments | « ui/webui/resources/cr_elements/icons.html ('k') | ui/webui/resources/cr_elements/policy/cr_policy_pref_indicator.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698