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

Unified Diff: third_party/WebKit/Source/devtools/front_end/object_ui/ObjectPopoverHelper.js

Issue 2710203003: [DevTools] show inlined shortcuts for go to location (Closed)
Patch Set: addressed comments Created 3 years, 10 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: 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));

Powered by Google App Engine
This is Rietveld 408576698