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

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

Issue 2188163003: MD Settings: Internet: Add 'forget' button, more fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_609156_internet_cleanup_6a
Patch Set: . 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/paper-button/paper-butt on.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-checkbox/paper-ch eckbox.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-input/paper-input .html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
5 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l"> 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html"> 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html">
7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html"> 7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html">
8 <link rel="import" href="internet_shared_css.html"> 8 <link rel="import" href="internet_shared_css.html">
9 <link rel="import" href="network_property_list.html"> 9 <link rel="import" href="network_property_list.html">
10 <link rel="import" href="network_proxy_input.html"> 10 <link rel="import" href="network_proxy_input.html">
11 <link rel="import" href="network_proxy_exclusions.html"> 11 <link rel="import" href="network_proxy_exclusions.html">
12 12
13 <dom-module id="network-proxy"> 13 <dom-module id="network-proxy">
14 <template> 14 <template>
15 <style include="internet-shared"> 15 <style include="internet-shared">
16 cr-policy-network-indicator { 16 cr-policy-network-indicator {
17 -webkit-margin-end: 10px; 17 -webkit-margin-end: 10px;
18 } 18 }
19 19
20 network-proxy-input {
21 margin-bottom: 10px;
22 }
23
20 #proxyDiv paper-checkbox { 24 #proxyDiv paper-checkbox {
21 padding: 10px 0; 25 padding: 10px 0;
22 } 26 }
23 27
24 #exceptionsDiv { 28 #exceptionsDiv {
25 padding: 10px 0; 29 padding: 10px 0;
26 } 30 }
27 31
28 #exceptionsDiv network-proxy-exclusions { 32 #exceptionsDiv network-proxy-exclusions {
29 margin: 10px 0; 33 margin: 10px 0;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 <paper-button on-tap="onAddProxyExclusionTap_"> 127 <paper-button on-tap="onAddProxyExclusionTap_">
124 Add Exception 128 Add Exception
125 </paper-button> 129 </paper-button>
126 </div> 130 </div>
127 </div> 131 </div>
128 </div> 132 </div>
129 133
130 </template> 134 </template>
131 <script src="network_proxy.js"></script> 135 <script src="network_proxy.js"></script>
132 </dom-module> 136 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698