| 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;
|
| },
|
|
|
| /**
|
|
|