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

Unified Diff: chrome/browser/resources/tracing/profiling_view.js

Issue 8513009: Add TRACE_COUNTER support to about:tracing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/tracing/profiling_view.js
diff --git a/chrome/browser/resources/tracing/profiling_view.js b/chrome/browser/resources/tracing/profiling_view.js
index a4f13de13cf9635ff91f4c5d2aa38bdf99c3700b..11cd27005b115b0b50705b506360aa32702d0906 100644
--- a/chrome/browser/resources/tracing/profiling_view.js
+++ b/chrome/browser/resources/tracing/profiling_view.js
@@ -46,10 +46,8 @@ cr.define('tracing', function() {
this.timelineView_ = new TimelineView();
this.controlDiv_.appendChild(this.recordBn_);
- if (!browserBridge.debugMode) {
- this.controlDiv_.appendChild(this.loadBn_);
- this.controlDiv_.appendChild(this.saveBn_);
- }
+ this.controlDiv_.appendChild(this.loadBn_);
+ this.controlDiv_.appendChild(this.saveBn_);
this.container_.appendChild(this.timelineView_);
this.appendChild(this.container_);

Powered by Google App Engine
This is Rietveld 408576698