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

Unified Diff: chrome/browser/resources/net_internals/details_view.js

Issue 2602473003: Run tools/clang-format-js on chrome/browser/resources/net_internals (Closed)
Patch Set: drop dep Created 3 years, 12 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/net_internals/details_view.js
diff --git a/chrome/browser/resources/net_internals/details_view.js b/chrome/browser/resources/net_internals/details_view.js
index 0bfa0eae0c9deea49ebc46784c7f93ab6fdbd5fd..1b1792f0f8ee2ba32f6d8c693b50ef378e6f49b7 100644
--- a/chrome/browser/resources/net_internals/details_view.js
+++ b/chrome/browser/resources/net_internals/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,9 @@ 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 | « chrome/browser/resources/net_internals/chromeos_view.js ('k') | chrome/browser/resources/net_internals/dns_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698