Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
| index 3b6b525f7e1b1c0a406c92c5cf409a005432ece1..c567449b90eb5165f9217788b738974580c84119 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
| @@ -415,6 +415,8 @@ WebInspector.CallStackSidebarPane.prototype = { |
| WebInspector.context.setFlavor(WebInspector.DebuggerModel.CallFrame, callFrame); |
| callFrame.debuggerModel.setSelectedCallFrame(callFrame); |
| + var uiLocation = WebInspector.debuggerWorkspaceBinding.rawLocationToUILocation(callFrame.location()); |
|
kozy
2016/10/13 22:56:54
Can we reveal location only if current flavor(WebI
|
| + WebInspector.Revealer.reveal(uiLocation); |
| }, |
| _copyStackTrace: function() |