Commit 2d418485 authored by sergeyv@chromium.org's avatar sergeyv@chromium.org

Devtools: Move custom formatters out of experiments

BUG=

Review URL: https://codereview.chromium.org/1325713004

git-svn-id: svn://svn.chromium.org/blink/trunk@201675 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 33ab8d29
......@@ -6,8 +6,7 @@
"title": "Enable custom formatters",
"settingName": "customFormatters",
"settingType": "boolean",
"defaultValue": false,
"experiment": "customObjectFormatters"
"defaultValue": false
},
{
"type": "@WebInspector.DOMPresentationUtils.MarkerDecorator",
......
......@@ -126,7 +126,6 @@ WebInspector.Main.prototype = {
Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI themes");
Runtime.experiments.register("blackboxJSFramesOnTimeline", "Blackbox JavaScript frames on Timeline", true);
Runtime.experiments.register("colorContrastRatio", "Contrast ratio line in color picker", true);
Runtime.experiments.register("customObjectFormatters", "Custom object formatters", true);
Runtime.experiments.register("emptySourceMapAutoStepping", "Empty sourcemap auto-stepping");
Runtime.experiments.register("fileSystemInspection", "FileSystem inspection");
Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true);
......
......@@ -46,9 +46,6 @@ WebInspector.RuntimeModel = function(target)
*/
this._executionContextById = {};
if (!Runtime.experiments.isEnabled("customObjectFormatters"))
return;
if (WebInspector.moduleSetting("customFormatters").get())
this._agent.setCustomObjectFormatterEnabled(true);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment