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

Unified Diff: chrome/browser/resources/settings/internet_page/network_proxy_input.js

Issue 2815923002: MD Settings: Internet: Proxy: Support partial proxies (Closed)
Patch Set: Rebase Created 3 years, 8 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
« no previous file with comments | « chrome/browser/resources/settings/internet_page/network_proxy.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/internet_page/network_proxy_input.js
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy_input.js b/chrome/browser/resources/settings/internet_page/network_proxy_input.js
index 9d807dc71f0738aa2fb4aa134ec7460f29b4e964..131b480655bc2617b57400218789a6e15114df86 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy_input.js
+++ b/chrome/browser/resources/settings/internet_page/network_proxy_input.js
@@ -46,8 +46,6 @@ Polymer({
* @private
*/
onValueChange_: function() {
- if (!this.value.Host)
- return;
var port = parseInt(this.value.Port, 10);
if (isNaN(port))
port = 80;
« no previous file with comments | « chrome/browser/resources/settings/internet_page/network_proxy.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698