| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 </div> | 73 </div> |
| 74 </template> | 74 </template> |
| 75 | 75 |
| 76 <!-- Allow shared proxies --> | 76 <!-- Allow shared proxies --> |
| 77 <div class="settings-box continuation" | 77 <div class="settings-box continuation" |
| 78 hidden$="[[!shouldShowAllowShared_( | 78 hidden$="[[!shouldShowAllowShared_( |
| 79 networkProperties.ProxySettings.Type)]]"> | 79 networkProperties.ProxySettings.Type)]]"> |
| 80 <settings-toggle-button id="allowShared" class="start" | 80 <settings-toggle-button id="allowShared" class="start" |
| 81 pref="{{prefs.settings.use_shared_proxies}}" | 81 pref="{{prefs.settings.use_shared_proxies}}" |
| 82 label="$i18n{networkProxyAllowShared}" | 82 label="$i18n{networkProxyAllowShared}" |
| 83 on-change="onAllowSharedProxiesChange_" | 83 on-settings-boolean-control-change="onAllowSharedProxiesChange_" |
| 84 no-set-pref> | 84 no-set-pref> |
| 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"> | 89 <div class="settings-box continuation"> |
| 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]]" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 </paper-button> | 214 </paper-button> |
| 215 <paper-button class="action-button" | 215 <paper-button class="action-button" |
| 216 on-tap="onAllowSharedDialogConfirm_"> | 216 on-tap="onAllowSharedDialogConfirm_"> |
| 217 $i18n{confirm} | 217 $i18n{confirm} |
| 218 </paper-button> | 218 </paper-button> |
| 219 </div> | 219 </div> |
| 220 </dialog> | 220 </dialog> |
| 221 </template> | 221 </template> |
| 222 <script src="network_proxy.js"></script> | 222 <script src="network_proxy.js"></script> |
| 223 </dom-module> | 223 </dom-module> |
| OLD | NEW |