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

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

Issue 2221073004: Replace deprecated iron-flex-layout/classes with iron-flex-layout-class in MD Settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo ^ Created 4 years, 4 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 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html">
6 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l"> 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html"> 8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html">
8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html"> 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html">
9 <link rel="import" href="internet_shared_css.html"> 10 <link rel="import" href="internet_shared_css.html">
10 <link rel="import" href="network_property_list.html"> 11 <link rel="import" href="network_property_list.html">
11 <link rel="import" href="network_proxy_input.html"> 12 <link rel="import" href="network_proxy_input.html">
12 <link rel="import" href="network_proxy_exclusions.html"> 13 <link rel="import" href="network_proxy_exclusions.html">
13 14
14 <dom-module id="network-proxy"> 15 <dom-module id="network-proxy">
15 <template> 16 <template>
16 <style include="internet-shared"> 17 <style include="iron-flex internet-shared">
17 cr-policy-network-indicator { 18 cr-policy-network-indicator {
18 -webkit-margin-end: 10px; 19 -webkit-margin-end: 10px;
19 } 20 }
20 21
21 network-proxy-input { 22 network-proxy-input {
22 margin-bottom: 10px; 23 margin-bottom: 10px;
23 } 24 }
24 25
25 #proxyDiv paper-checkbox { 26 #proxyDiv paper-checkbox {
26 padding: 10px 0; 27 padding: 10px 0;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 </paper-input-container> 128 </paper-input-container>
128 <paper-button on-tap="onAddProxyExclusionTap_"> 129 <paper-button on-tap="onAddProxyExclusionTap_">
129 Add Exception 130 Add Exception
130 </paper-button> 131 </paper-button>
131 </div> 132 </div>
132 </div> 133 </div>
133 </div> 134 </div>
134 </template> 135 </template>
135 <script src="network_proxy.js"></script> 136 <script src="network_proxy.js"></script>
136 </dom-module> 137 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698