| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or_behavior.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be
havior.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be
havior.html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> |
| 7 <link rel="import" href="/controls/pref_control_behavior.html"> | 7 <link rel="import" href="/controls/pref_control_behavior.html"> |
| 8 <link rel="import" href="/i18n_setup.html"> | 8 <link rel="import" href="/i18n_setup.html"> |
| 9 <link rel="import" href="/settings_shared_css.html"> | 9 <link rel="import" href="/settings_shared_css.html"> |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 <paper-button disabled="[[controlled_]]"> | 42 <paper-button disabled="[[controlled_]]"> |
| 43 <content></content> | 43 <content></content> |
| 44 </paper-button> | 44 </paper-button> |
| 45 | 45 |
| 46 <template is="dom-if" if="[[showIndicator_(pref)]]" restamp> | 46 <template is="dom-if" if="[[showIndicator_(pref)]]" restamp> |
| 47 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_"> | 47 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_"> |
| 48 </cr-policy-pref-indicator> | 48 </cr-policy-pref-indicator> |
| 49 </template> | 49 </template> |
| 50 | 50 |
| 51 </template> | 51 </template> |
| 52 <script src="/controls/controlled_button.js"></script> | 52 <script src="controlled_button.js"></script> |
| 53 </dom-module> | 53 </dom-module> |
| OLD | NEW |