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

Unified Diff: tools/profviz/composer.js

Issue 1802303002: Small fix for the timer event plotter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/profviz/composer.js
diff --git a/tools/profviz/composer.js b/tools/profviz/composer.js
index d56bcb944bde36af183be0d002de96e06d76cb44..108911de696037c13d056f9d43167fc35b0cb007 100644
--- a/tools/profviz/composer.js
+++ b/tools/profviz/composer.js
@@ -331,7 +331,7 @@ function PlotScriptComposer(kResX, kResY, error_output) {
var line;
while (line = input()) {
- logreader.processLogLine(line);
+ for (var s of line.split("\n")) logreader.processLogLine(s);
}
// Collect execution pauses.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698