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

Unified Diff: Source/devtools/front_end/sdk/Target.js

Issue 709423002: DevTools: remove old Timeline front-end implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated LayoutTests/inspector/layers/layer-canvas-log.html Created 6 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
« no previous file with comments | « Source/devtools/front_end/main/Main.js ('k') | Source/devtools/front_end/sdk/TimelineManager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/Target.js
diff --git a/Source/devtools/front_end/sdk/Target.js b/Source/devtools/front_end/sdk/Target.js
index 2a698784ae16172771ab743663904d8dcedc35d0..0551ea336520e63ae5792967f95e05f8821d6155 100644
--- a/Source/devtools/front_end/sdk/Target.js
+++ b/Source/devtools/front_end/sdk/Target.js
@@ -29,8 +29,7 @@ WebInspector.Target = function(name, connection, callback)
if (Runtime.experiments.isEnabled("timelinePowerProfiler"))
this.powerAgent().canProfilePower(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanProfilePower, null));
this.workerAgent().canInspectWorkers(this._initializeCapability.bind(this, WebInspector.Target.Capabilities.CanInspectWorkers, this._loadedWithCapabilities.bind(this, callback)));
- if (Runtime.experiments.isEnabled("timelineOnTraceEvents"))
- this.consoleAgent().setTracingBasedTimeline(true);
+ this.consoleAgent().setTracingBasedTimeline(true);
}
/**
@@ -160,9 +159,6 @@ WebInspector.Target.prototype = {
if (this.hasCapability(WebInspector.Target.Capabilities.CanProfilePower))
WebInspector.powerProfiler = new WebInspector.PowerProfiler(this);
- /** @type {!WebInspector.TimelineManager} */
- this.timelineManager = new WebInspector.TimelineManager(this);
-
/** @type {!WebInspector.DatabaseModel} */
this.databaseModel = new WebInspector.DatabaseModel(this);
if (!WebInspector.databaseModel)
« no previous file with comments | « Source/devtools/front_end/main/Main.js ('k') | Source/devtools/front_end/sdk/TimelineManager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698