| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> |
| 7 <link rel="import" href="internet_shared_css.html"> | 8 <link rel="import" href="internet_shared_css.html"> |
| 8 | 9 |
| 9 <dom-module id="network-property-list"> | 10 <dom-module id="network-property-list"> |
| 10 <template> | 11 <template> |
| 11 <style include="internet-shared"> | 12 <style include="internet-shared"> |
| 12 paper-input-container { | 13 paper-input-container { |
| 13 margin-bottom: -12px; | 14 margin-bottom: -12px; |
| 14 margin-top: -8px; | 15 margin-top: -8px; |
| 15 } | 16 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 value="[[getPropertyValue_(item, prefix, propertyDict)]]" | 60 value="[[getPropertyValue_(item, prefix, propertyDict)]]" |
| 60 on-change="onValueChange_"> | 61 on-change="onValueChange_"> |
| 61 </paper-input-container> | 62 </paper-input-container> |
| 62 </template> | 63 </template> |
| 63 <!-- TODO(stevenjb): Support other types. --> | 64 <!-- TODO(stevenjb): Support other types. --> |
| 64 </div> | 65 </div> |
| 65 </template> | 66 </template> |
| 66 </template> | 67 </template> |
| 67 <script src="network_property_list.js"></script> | 68 <script src="network_property_list.js"></script> |
| 68 </dom-module> | 69 </dom-module> |
| OLD | NEW |