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