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

Unified Diff: chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html

Issue 1219753007: Add network proxy input to md-settings internet details (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_470445_onc_proxy
Patch Set: Rebase Created 5 years, 5 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_exclusions.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html b/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
new file mode 100644
index 0000000000000000000000000000000000000000..07b9273001a26012483b6df77109da94ec0d237e
--- /dev/null
+++ b/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
@@ -0,0 +1,18 @@
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styles.html">
+
+<dom-module id="network-proxy-exclusions">
+ <link rel="import" type="css" href="network_proxy_exclusions.css">
+ <template>
+ <div id="container" class="layout vertical">
+ <template is="dom-repeat" items="[[exclusions]]">
+ <div class="layout horizontal">
+ <span class="flex">[[item]]</span>
+ <iron-icon icon="clear" on-click="removeItem_"></iron-icon>
+ </div>
+ </template>
+ </div>
+ </template>
+ <script src="network_proxy_exclusions.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698