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

Unified Diff: netlog_viewer/netlog_viewer/details_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/chromeos_view.js ('k') | netlog_viewer/netlog_viewer/dns_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/netlog_viewer/details_view.js
diff --git a/netlog_viewer/netlog_viewer/details_view.js b/netlog_viewer/netlog_viewer/details_view.js
index 1fec1b024829ce62c24602f73ad1b66753cd9188..c4d629f7452fe633d09a700b071b660812f51cfb 100644
--- a/netlog_viewer/netlog_viewer/details_view.js
+++ b/netlog_viewer/netlog_viewer/details_view.js
@@ -41,8 +41,7 @@ var DetailsView = (function() {
// Repaint the view.
if (this.isVisible() && !this.outstandingRepaint_) {
this.outstandingRepaint_ = true;
- window.setTimeout(this.repaint.bind(this),
- REPAINT_TIMEOUT_MS);
+ window.setTimeout(this.repaint.bind(this), REPAINT_TIMEOUT_MS);
}
},
@@ -62,9 +61,10 @@ var DetailsView = (function() {
div.className = 'log-source-entry';
var p = addNode(div, 'p');
- addNodeWithText(p, 'h4',
- sourceEntry.getSourceId() + ': ' +
- sourceEntry.getSourceTypeString());
+ addNodeWithText(
+ p, 'h4',
+ sourceEntry.getSourceId() + ': ' +
+ sourceEntry.getSourceTypeString());
if (sourceEntry.getDescription())
addNodeWithText(p, 'h4', sourceEntry.getDescription());
« no previous file with comments | « netlog_viewer/netlog_viewer/chromeos_view.js ('k') | netlog_viewer/netlog_viewer/dns_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698