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

Unified Diff: chrome/browser/resources/settings/internet_page/network_proxy_input.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: More feedback 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_input.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy_input.html b/chrome/browser/resources/settings/internet_page/network_proxy_input.html
index 8de2103c7cabab044090a121a7b319bedad52164..6eeef81a2b3428df3e66154cbe7da802eb82e465 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy_input.html
+++ b/chrome/browser/resources/settings/internet_page/network_proxy_input.html
@@ -1,5 +1,5 @@
<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
-<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.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">
<dom-module id="network-proxy-input">
@@ -7,13 +7,13 @@
<template>
<div id="outer" class="layout horizontal">
<span class="flex">[[label]]</span>
- <cr-input no-label-float id="url" disabled="[[!editable]]"
+ <paper-input no-label-float id="url" disabled="[[!editable]]"
value="{{value.Host}}" on-blur="onValueChange_">
- </cr-input>
+ </paper-input>
<span>Port</span>
- <cr-input no-label-float id="port" disabled="[[!editable]]"
+ <paper-input no-label-float id="port" disabled="[[!editable]]"
value="{{value.Port}}" on-blur="onValueChange_">
- </cr-input>
+ </paper-input>
</div>
</template>
<script src="network_proxy_input.js"></script>

Powered by Google App Engine
This is Rietveld 408576698