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

Unified Diff: chrome/browser/resources/settings/internet_page/network_proxy.html

Issue 1368733002: Introduce cr-settings-input and eliminate cr-input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_532540_elim_cr_toggle_button
Patch Set: Rebase Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/internet_page/network_proxy.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy.html b/chrome/browser/resources/settings/internet_page/network_proxy.html
index 076ea9340c9d02976fe2cc8517e0040ac23a731e..61ae5fdc3c7e49eaaf9379b3a3c96bb662aa33b2 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy.html
+++ b/chrome/browser/resources/settings/internet_page/network_proxy.html
@@ -1,8 +1,8 @@
<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-checkbox.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styles.html">
-<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.html">
<link rel="import" href="chrome://resources/cr_elements/v1_0/network/cr_onc_types.html">
<link rel="import" href="network_property_list.html">
<link rel="import" href="network_proxy_input.html">
@@ -24,9 +24,9 @@
<div hidden$="[[!matches_(proxy.Type, ProxySettingsType.PAC)]]"
class="layout horizontal">
<span>Autoconfiguration URL:</span>
- <cr-input no-label-float class="flex" value="{{proxy.PAC}}"
+ <paper-input no-label-float class="flex" value="{{proxy.PAC}}"
on-blur="onProxyInputChange_">
- </cr-input>
+ </paper-input>
</div>
<div hidden$="[[!matches_(proxy.Type, ProxySettingsType.WPAD)]]"
@@ -69,8 +69,8 @@
on-proxy-change="onProxyExclusionsChange_">
</network-proxy-exclusions>
<div class="layout horizontal baseline">
- <cr-input id="proxyExclusion" class="flex" no-label-float>
- </cr-input>
+ <paper-input id="proxyExclusion" class="flex" no-label-float>
+ </paper-input>
<paper-button on-tap="onAddProxyExclusion_">
Add Exception
</paper-button>

Powered by Google App Engine
This is Rietveld 408576698