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

Unified Diff: chrome/browser/resources/settings/internet_page/network_proxy_input.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_input.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy_input.html b/chrome/browser/resources/settings/internet_page/network_proxy_input.html
new file mode 100644
index 0000000000000000000000000000000000000000..88a3ceedbe7762525fd21fe7a98557cb374a5a7d
--- /dev/null
+++ b/chrome/browser/resources/settings/internet_page/network_proxy_input.html
@@ -0,0 +1,20 @@
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
+<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styles.html">
+
+<dom-module id="network-proxy-input">
+ <link rel="import" type="css" href="network_proxy_input.css">
+ <template>
+ <div id="outer" class="layout horizontal">
+ <span class="flex">[[label]]</span>
+ <cr-input no-label-float id="url" disabled="[[!editable]]"
+ value="{{value.Host}}" on-blur="onValueChanged_">
+ </cr-input>
+ <span>Port</span>
+ <cr-input no-label-float id="port" disabled="[[!editable]]"
+ value="{{value.Port}}" on-blur="onValueChanged_">
+ </cr-input>
+ </div>
+ </template>
+ <script src="network_proxy_input.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698