| Index: third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPopoverHelper.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPopoverHelper.js b/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPopoverHelper.js
|
| index 946b79db4e5214510523de34f54807075bbcc6d8..b5261b975d818c4e03d0e1cf67077e3c4eeb916d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPopoverHelper.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPopoverHelper.js
|
| @@ -95,12 +95,6 @@ ObjectUI.ObjectPopoverHelper = class extends UI.PopoverHelper {
|
|
|
| var rawLocation = response.location;
|
| var linkContainer = title.createChild('div', 'function-title-link-container');
|
| - if (rawLocation && Runtime.experiments.isEnabled('continueToFirstInvocation')) {
|
| - var sectionToolbar = new UI.Toolbar('function-location-step-into', linkContainer);
|
| - var stepInto = new UI.ToolbarButton(Common.UIString('Continue to first invocation'), 'largeicon-step-in');
|
| - stepInto.addEventListener(UI.ToolbarButton.Events.Click, () => rawLocation.continueToLocation());
|
| - sectionToolbar.appendToolbarItem(stepInto);
|
| - }
|
| var sourceURL = rawLocation && rawLocation.script() ? rawLocation.script().sourceURL : null;
|
| if (rawLocation && sourceURL)
|
| linkContainer.appendChild(this._lazyLinkifier().linkifyRawLocation(rawLocation, sourceURL));
|
|
|