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

Unified Diff: Source/devtools/front_end/TimelineManager.js

Issue 254613002: DevTools: add Tracing agent on back-end (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed obsolete code Created 6 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: Source/devtools/front_end/TimelineManager.js
diff --git a/Source/devtools/front_end/TimelineManager.js b/Source/devtools/front_end/TimelineManager.js
index 2a346c1d6c0c3f88a956989c8e2a80f0e32f1c5f..6b57bfff95df443832ab8687b7026ba901ade5b5 100644
--- a/Source/devtools/front_end/TimelineManager.js
+++ b/Source/devtools/front_end/TimelineManager.js
@@ -38,7 +38,7 @@ WebInspector.TimelineManager = function(target)
WebInspector.TargetAwareObject.call(this, target);
this._dispatcher = new WebInspector.TimelineDispatcher(this);
this._enablementCount = 0;
- TimelineAgent.enable(WebInspector.experimentsSettings.timelineTracingMode.isEnabled() ? WebInspector.TimelineManager.defaultTracingCategories : "");
+ TimelineAgent.enable();
}
WebInspector.TimelineManager.EventTypes = {
@@ -48,8 +48,6 @@ WebInspector.TimelineManager.EventTypes = {
TimelineProgress: "TimelineProgress"
}
-WebInspector.TimelineManager.defaultTracingCategories = "*,disabled-by-default-cc.debug,disabled-by-default-devtools.timeline";
-
WebInspector.TimelineManager.prototype = {
/**
* @return {boolean}

Powered by Google App Engine
This is Rietveld 408576698