Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_proxy.html

Issue 2624213008: MD Settings: Update some ChromeOS inputs to on-change (Closed)
Patch Set: fix issue Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/paper-button/paper-butt on.html"> 8 <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-input/paper-input -container.html"> 9 <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 .html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 </div> 103 </div>
104 </div> 104 </div>
105 105
106 <!-- Autoconfiguration (PAC) --> 106 <!-- Autoconfiguration (PAC) -->
107 <div class="settings-box continuation indent" 107 <div class="settings-box continuation indent"
108 hidden$="[[!matches_(proxy_.Type, ProxySettingsType_.PAC)]]"> 108 hidden$="[[!matches_(proxy_.Type, ProxySettingsType_.PAC)]]">
109 <div>$i18n{networkProxyAutoConfig}</div> 109 <div>$i18n{networkProxyAutoConfig}</div>
110 <paper-input no-label-float class="middle flex" value="{{proxy_.PAC}}" 110 <paper-input no-label-float class="middle flex" value="{{proxy_.PAC}}"
111 disabled="[[!isEditable_('PAC', networkProperties, editable, 111 disabled="[[!isEditable_('PAC', networkProperties, editable,
112 useSharedProxies_)]]" 112 useSharedProxies_)]]"
113 on-blur="onPACChange_"> 113 on-change="onPACChange_">
114 </paper-input> 114 </paper-input>
115 </div> 115 </div>
116 116
117 <!-- Web Proxy Auto Discovery (WPAD) --> 117 <!-- Web Proxy Auto Discovery (WPAD) -->
118 <div class="settings-box continuation indent" 118 <div class="settings-box continuation indent"
119 hidden$="[[!matches_(proxy_.Type, ProxySettingsType_.WPAD)]]"> 119 hidden$="[[!matches_(proxy_.Type, ProxySettingsType_.WPAD)]]">
120 <div>$i18n{networkSectionWpad}</div> 120 <div>$i18n{networkSectionWpad}</div>
121 <div class="middle flex">[[WPAD_]]</div> 121 <div class="middle flex">[[WPAD_]]</div>
122 </div> 122 </div>
123 123
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 </paper-button> 208 </paper-button>
209 <paper-button class="action-button" 209 <paper-button class="action-button"
210 on-tap="onAllowSharedDialogConfirm_"> 210 on-tap="onAllowSharedDialogConfirm_">
211 $i18n{confirm} 211 $i18n{confirm}
212 </paper-button> 212 </paper-button>
213 </div> 213 </div>
214 </dialog> 214 </dialog>
215 </template> 215 </template>
216 <script src="network_proxy.js"></script> 216 <script src="network_proxy.js"></script>
217 </dom-module> 217 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698