| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 3 <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"> |
| 4 <link rel="import" href="network_property_list.html"> | 4 <link rel="import" href="network_property_list.html"> |
| 5 | 5 |
| 6 <dom-module id="network-ip-config"> | 6 <dom-module id="network-ip-config"> |
| 7 <link rel="import" type="css" href="network_ip_config.css"> | |
| 8 <template> | 7 <template> |
| 8 <style> |
| 9 paper-checkbox { |
| 10 margin-bottom: 10px; |
| 11 } |
| 12 |
| 13 network-property-list { |
| 14 -webkit-margin-start: 28px; |
| 15 } |
| 16 </style> |
| 9 <div id="outer" class="layout vertical"> | 17 <div id="outer" class="layout vertical"> |
| 10 <paper-checkbox checked="{{automatic}}" disabled="[[!editable]]"> | 18 <paper-checkbox checked="{{automatic}}" disabled="[[!editable]]"> |
| 11 Configure IP Address Automatically | 19 Configure IP Address Automatically |
| 12 </paper-checkbox> | 20 </paper-checkbox> |
| 13 <network-property-list | 21 <network-property-list |
| 14 fields="[[ipConfigFields_]]" property-dict="[[ipConfig]]" | 22 fields="[[ipConfigFields_]]" property-dict="[[ipConfig]]" |
| 15 edit-field-types="[[getIPEditFields_(ipConfig, editable, automatic)]]" | 23 edit-field-types="[[getIPEditFields_(ipConfig, editable, automatic)]]" |
| 16 on-property-change="onIPChange_"> | 24 on-property-change="onIPChange_"> |
| 17 </network-property-list> | 25 </network-property-list> |
| 18 </div> | 26 </div> |
| 19 </template> | 27 </template> |
| 20 <script src="network_ip_config.js"></script> | 28 <script src="network_ip_config.js"></script> |
| 21 </dom-module> | 29 </dom-module> |
| OLD | NEW |