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

Unified Diff: Source/devtools/front_end/main/Main.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/devtools.gypi ('k') | Source/devtools/front_end/sdk/Target.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/main/Main.js
diff --git a/Source/devtools/front_end/main/Main.js b/Source/devtools/front_end/main/Main.js
index 13556ec891984c54b738138ffb231b148243d28d..35722bbd078fb2c04bcefb704c2c55c6dfad7bd3 100644
--- a/Source/devtools/front_end/main/Main.js
+++ b/Source/devtools/front_end/main/Main.js
@@ -156,7 +156,6 @@ WebInspector.Main.prototype = {
Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true);
Runtime.experiments.register("layersPanel", "Layers panel");
Runtime.experiments.register("promiseTracker", "Enable Promise inspection");
- Runtime.experiments.register("timelineOnTraceEvents", "Timeline on trace events");
Runtime.experiments.register("timelinePowerProfiler", "Timeline power profiler");
Runtime.experiments.register("timelineJSCPUProfile", "Timeline with JS sampling");
Runtime.experiments.register("timelineInvalidationTracking", "Timeline with full invalidation tracking.");
@@ -168,15 +167,12 @@ WebInspector.Main.prototype = {
var testPath = WebInspector.settings.testPath.get();
if (testPath.indexOf("timeline/") !== -1 || testPath.indexOf("layers/") !== -1)
Runtime.experiments.enableForTest("layersPanel");
- if (testPath.indexOf("tracing/") !== -1)
- Runtime.experiments.enableForTest("timelineOnTraceEvents");
if (testPath.indexOf("documentation/") !== -1)
Runtime.experiments.enableForTest("documentation");
if (testPath.indexOf("elements/") !== -1)
Runtime.experiments.enableForTest("animationInspection");
} else {
Runtime.experiments.setDefaultExperiments([
- "timelineOnTraceEvents",
"disableAgentsWhenProfile",
"timelineJSCPUProfile",
]);
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/sdk/Target.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698