| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 3 <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
_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
| 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 6 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 6 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 7 <link rel="import" href="chrome://resources/html/polymer.html"> | 7 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11
y-keys.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 </settings-toggle-button> | 80 </settings-toggle-button> |
| 81 </div> | 81 </div> |
| 82 | 82 |
| 83 <!-- Proxy type dropdown --> | 83 <!-- Proxy type dropdown --> |
| 84 <div class="settings-box continuation indent"> | 84 <div class="settings-box continuation indent"> |
| 85 <div class="start">$i18n{networkProxyConnectionType}</div> | 85 <div class="start">$i18n{networkProxyConnectionType}</div> |
| 86 <div class="md-select-wrapper"> | 86 <div class="md-select-wrapper"> |
| 87 <select id="proxyType" class="md-select" on-change="onTypeChange_" | 87 <select id="proxyType" class="md-select" on-change="onTypeChange_" |
| 88 value="[[proxy_.Type]]" | 88 value="[[proxy_.Type]]" |
| 89 disabled="[[!isEditable_('Type', networkProperties, editable, | 89 disabled="[[!isEditable_('Type', networkProperties, editable, |
| 90 useSharedProxies_)]]"> | 90 useSharedProxies_)]]" |
| 91 aria-label="$i18n{networkProxyConnectionType}"> |
| 91 <template is="dom-repeat" items="[[proxyTypes_]]"> | 92 <template is="dom-repeat" items="[[proxyTypes_]]"> |
| 92 <option value="[[item]]">[[getProxyTypeDesc_(item)]]</option> | 93 <option value="[[item]]">[[getProxyTypeDesc_(item)]]</option> |
| 93 </template> | 94 </template> |
| 94 </select> | 95 </select> |
| 95 <span class="md-select-underline"></span> | 96 <span class="md-select-underline"></span> |
| 96 </div> | 97 </div> |
| 97 </div> | 98 </div> |
| 98 | 99 |
| 99 <!-- Autoconfiguration (PAC) --> | 100 <!-- Autoconfiguration (PAC) --> |
| 100 <div class="settings-box continuation indent" | 101 <div class="settings-box continuation indent" |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 </paper-button> | 210 </paper-button> |
| 210 <paper-button class="action-button" | 211 <paper-button class="action-button" |
| 211 on-tap="onAllowSharedDialogConfirm_"> | 212 on-tap="onAllowSharedDialogConfirm_"> |
| 212 $i18n{confirm} | 213 $i18n{confirm} |
| 213 </paper-button> | 214 </paper-button> |
| 214 </div> | 215 </div> |
| 215 </dialog> | 216 </dialog> |
| 216 </template> | 217 </template> |
| 217 <script src="network_proxy.js"></script> | 218 <script src="network_proxy.js"></script> |
| 218 </dom-module> | 219 </dom-module> |
| OLD | NEW |