| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 <paper-button id="saveManualProxy" | 195 <paper-button id="saveManualProxy" |
| 196 on-tap="onSaveProxyTap_" class="action-button" | 196 on-tap="onSaveProxyTap_" class="action-button" |
| 197 disabled="[[!isSaveManualProxyEnabled_(networkProperties, | 197 disabled="[[!isSaveManualProxyEnabled_(networkProperties, |
| 198 proxyModified_, proxy_.*)]]"> | 198 proxyModified_, proxy_.*)]]"> |
| 199 $i18n{save} | 199 $i18n{save} |
| 200 </paper-button> | 200 </paper-button> |
| 201 </div> | 201 </div> |
| 202 | 202 |
| 203 <!-- Confirm Allow shared proxies dialog --> | 203 <!-- Confirm Allow shared proxies dialog --> |
| 204 <dialog is="cr-dialog" id="confirmAllowSharedDialog" | 204 <dialog is="cr-dialog" id="confirmAllowSharedDialog" |
| 205 on-cancel="onAllowSharedDialogCancel_"> | 205 close-text="$i18n{close}" on-cancel="onAllowSharedDialogCancel_"> |
| 206 <div class="title">$i18n{networkProxyAllowSharedWarningTitle}</div> | 206 <div class="title">$i18n{networkProxyAllowSharedWarningTitle}</div> |
| 207 <div class="body">$i18n{networkProxyAllowSharedWarningMessage}</div> | 207 <div class="body">$i18n{networkProxyAllowSharedWarningMessage}</div> |
| 208 <div class="button-container"> | 208 <div class="button-container"> |
| 209 <paper-button class="cancel-button" | 209 <paper-button class="cancel-button" |
| 210 on-tap="onAllowSharedDialogCancel_"> | 210 on-tap="onAllowSharedDialogCancel_"> |
| 211 $i18n{cancel} | 211 $i18n{cancel} |
| 212 </paper-button> | 212 </paper-button> |
| 213 <paper-button class="action-button" | 213 <paper-button class="action-button" |
| 214 on-tap="onAllowSharedDialogConfirm_"> | 214 on-tap="onAllowSharedDialogConfirm_"> |
| 215 $i18n{confirm} | 215 $i18n{confirm} |
| 216 </paper-button> | 216 </paper-button> |
| 217 </div> | 217 </div> |
| 218 </dialog> | 218 </dialog> |
| 219 </template> | 219 </template> |
| 220 <script src="network_proxy.js"></script> | 220 <script src="network_proxy.js"></script> |
| 221 </dom-module> | 221 </dom-module> |
| OLD | NEW |