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

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

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h tml"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.h tml">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html">
5 <link rel="import" href="internet_shared_css.html"> 6 <link rel="import" href="internet_shared_css.html">
6 7
7 <dom-module id="network-proxy-input"> 8 <dom-module id="network-proxy-input">
8 <template> 9 <template>
9 <style include="internet-shared iron-flex"> 10 <style include="internet-shared iron-flex">
10 paper-input-container { 11 paper-input-container {
11 -webkit-margin-start: 10px; 12 -webkit-margin-start: 10px;
(...skipping 13 matching lines...) Expand all
25 </paper-input-container> 26 </paper-input-container>
26 <div>$i18n{networkProxyPort}</div> 27 <div>$i18n{networkProxyPort}</div>
27 <paper-input-container no-label-float id="port"> 28 <paper-input-container no-label-float id="port">
28 <input is="iron-input" bind-value="{{value.Port}}" 29 <input is="iron-input" bind-value="{{value.Port}}"
29 disabled="[[!editable]]" on-change="onValueChange_"> 30 disabled="[[!editable]]" on-change="onValueChange_">
30 </paper-input-container> 31 </paper-input-container>
31 </div> 32 </div>
32 </template> 33 </template>
33 <script src="network_proxy_input.js"></script> 34 <script src="network_proxy_input.js"></script>
34 </dom-module> 35 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698