| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 </settings-toggle-button> | 85 </settings-toggle-button> |
| 86 </div> | 86 </div> |
| 87 | 87 |
| 88 <!-- Proxy type dropdown --> | 88 <!-- Proxy type dropdown --> |
| 89 <div class="settings-box continuation indent"> | 89 <div class="settings-box continuation indent"> |
| 90 <div class="start">$i18n{networkProxyConnectionType}</div> | 90 <div class="start">$i18n{networkProxyConnectionType}</div> |
| 91 <div class="md-select-wrapper"> | 91 <div class="md-select-wrapper"> |
| 92 <select id="proxyType" class="md-select" on-change="onTypeChange_" | 92 <select id="proxyType" class="md-select" on-change="onTypeChange_" |
| 93 value="[[proxy_.Type]]" | 93 value="[[proxy_.Type]]" |
| 94 disabled="[[!isEditable_('Type', networkProperties, editable, | 94 disabled="[[!isEditable_('Type', networkProperties, editable, |
| 95 useSharedProxies_)]]"> | 95 useSharedProxies_)]]" |
| 96 aria-label="$i18n{networkProxyConnectionType}"> |
| 96 <template is="dom-repeat" items="[[proxyTypes_]]"> | 97 <template is="dom-repeat" items="[[proxyTypes_]]"> |
| 97 <option value="[[item]]">[[getProxyTypeDesc_(item)]]</option> | 98 <option value="[[item]]">[[getProxyTypeDesc_(item)]]</option> |
| 98 </template> | 99 </template> |
| 99 </select> | 100 </select> |
| 100 <span class="md-select-underline"></span> | 101 <span class="md-select-underline"></span> |
| 101 </div> | 102 </div> |
| 102 </div> | 103 </div> |
| 103 | 104 |
| 104 <!-- Autoconfiguration (PAC) --> | 105 <!-- Autoconfiguration (PAC) --> |
| 105 <div class="settings-box continuation indent" | 106 <div class="settings-box continuation indent" |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 </paper-button> | 215 </paper-button> |
| 215 <paper-button class="action-button" | 216 <paper-button class="action-button" |
| 216 on-tap="onAllowSharedDialogConfirm_"> | 217 on-tap="onAllowSharedDialogConfirm_"> |
| 217 $i18n{confirm} | 218 $i18n{confirm} |
| 218 </paper-button> | 219 </paper-button> |
| 219 </div> | 220 </div> |
| 220 </dialog> | 221 </dialog> |
| 221 </template> | 222 </template> |
| 222 <script src="network_proxy.js"></script> | 223 <script src="network_proxy.js"></script> |
| 223 </dom-module> | 224 </dom-module> |
| OLD | NEW |