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

Unified Diff: chrome/browser/resources/gpu_internals/timeline_view.js

Issue 6712048: Implement easy GPU feature status summary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: First rev Created 9 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
Index: chrome/browser/resources/gpu_internals/timeline_view.js
diff --git a/chrome/browser/resources/gpu_internals/timeline_view.js b/chrome/browser/resources/gpu_internals/timeline_view.js
index 12f9dea82c645ad58c7bc9b11e959a4961d41508..53520d2a969a418cb31be68ee00d07ac3c3f537c 100644
--- a/chrome/browser/resources/gpu_internals/timeline_view.js
+++ b/chrome/browser/resources/gpu_internals/timeline_view.js
@@ -140,16 +140,16 @@ cr.define('gpu', function() {
text += leftAlign('*Totals', 55) + ' : ' +
rightAlign(tsRound(totalDuration) + 'ms', 12) + ' ' +
rightAlign(String(selection.length), 5) + ' occurrences' +
- '\n';
+ '\n';
text += '\n';
text += leftAlign('Selection start', 55) + ' : ' +
rightAlign(tsRound(tsLo) + 'ms', 12) +
- '\n';
+ '\n';
text += leftAlign('Selection extent', 55) + ' : ' +
rightAlign(tsRound(tsHi - tsLo) + 'ms', 12) +
- '\n';
+ '\n';
// done
var outputDiv = $('timeline-selection-summary');

Powered by Google App Engine
This is Rietveld 408576698