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

Side by Side 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: Rebase Created 5 years, 2 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/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.h tml"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styl es.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styl es.html">
4 4
5 <dom-module id="network-proxy-input"> 5 <dom-module id="network-proxy-input">
6 <link rel="import" type="css" href="network_proxy_input.css"> 6 <link rel="import" type="css" href="network_proxy_input.css">
7 <template> 7 <template>
8 <div id="outer" class="layout horizontal"> 8 <div id="outer" class="layout horizontal">
9 <span class="flex">[[label]]</span> 9 <span class="flex">[[label]]</span>
10 <cr-input no-label-float id="url" disabled="[[!editable]]" 10 <paper-input no-label-float id="url" disabled="[[!editable]]"
11 value="{{value.Host}}" on-blur="onValueChange_"> 11 value="{{value.Host}}" on-blur="onValueChange_">
12 </cr-input> 12 </paper-input>
13 <span>Port</span> 13 <span>Port</span>
14 <cr-input no-label-float id="port" disabled="[[!editable]]" 14 <paper-input no-label-float id="port" disabled="[[!editable]]"
15 value="{{value.Port}}" on-blur="onValueChange_"> 15 value="{{value.Port}}" on-blur="onValueChange_">
16 </cr-input> 16 </paper-input>
17 </div> 17 </div>
18 </template> 18 </template>
19 <script src="network_proxy_input.js"></script> 19 <script src="network_proxy_input.js"></script>
20 </dom-module> 20 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698