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

Unified Diff: netlog_viewer/netlog_viewer/proxy_view.js

Issue 3011363002: Apply Chromium changes up to commit 0036296a1128ac9cbefeaff51c8df831ec421c36 (Closed)
Patch Set: address comments Created 3 years, 3 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 | « netlog_viewer/netlog_viewer/netlog_viewer.html ('k') | netlog_viewer/netlog_viewer/quic_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/netlog_viewer/proxy_view.js
diff --git a/netlog_viewer/netlog_viewer/proxy_view.js b/netlog_viewer/netlog_viewer/proxy_view.js
index 4bd5564fda69685c9a768a67c8a5c319c8a32491..4007f47d159c203cc227be5422bba2180ce88318 100644
--- a/netlog_viewer/netlog_viewer/proxy_view.js
+++ b/netlog_viewer/netlog_viewer/proxy_view.js
@@ -53,7 +53,7 @@ var ProxyView = (function() {
onLoadLogFinish: function(data) {
return this.onProxySettingsChanged(data.proxySettings) &&
- this.onBadProxiesChanged(data.badProxies);
+ this.onBadProxiesChanged(data.badProxies);
},
onProxySettingsChanged: function(proxySettings) {
@@ -72,8 +72,8 @@ var ProxyView = (function() {
var originalStr = proxySettingsToString(original);
var effectiveStr = proxySettingsToString(effective);
- setNodeDisplay($(ProxyView.ORIGINAL_CONTENT_DIV_ID),
- originalStr != effectiveStr);
+ setNodeDisplay(
+ $(ProxyView.ORIGINAL_CONTENT_DIV_ID), originalStr != effectiveStr);
$(ProxyView.ORIGINAL_SETTINGS_DIV_ID).innerText = originalStr;
$(ProxyView.EFFECTIVE_SETTINGS_DIV_ID).innerText = effectiveStr;
@@ -85,8 +85,8 @@ var ProxyView = (function() {
onBadProxiesChanged: function(badProxies) {
$(ProxyView.BAD_PROXIES_TBODY_ID).innerHTML = '';
- setNodeDisplay($(ProxyView.BAD_PROXIES_DIV_ID),
- badProxies && badProxies.length > 0);
+ setNodeDisplay(
+ $(ProxyView.BAD_PROXIES_DIV_ID), badProxies && badProxies.length > 0);
if (!badProxies)
return false;
@@ -122,8 +122,8 @@ var ProxyView = (function() {
// proxy settings include proxy bypasses the user may need to expand the
// exclusions for host resolving.
var hostResolverRules = 'MAP * ~NOTFOUND , EXCLUDE ' + socksProxy.host;
- var hostResolverRulesFlag = '--host-resolver-rules="' +
- hostResolverRules + '"';
+ var hostResolverRulesFlag =
+ '--host-resolver-rules="' + hostResolverRules + '"';
// TODO(eroman): On Linux the ClientInfo.command_line is wrong in that it
// doesn't include any quotes around the parameters. This means the
« no previous file with comments | « netlog_viewer/netlog_viewer/netlog_viewer.html ('k') | netlog_viewer/netlog_viewer/quic_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698