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 1d3619c5337d2f3b17a06d795c7b662e047aab65..30e70767f0c62c0f79b875636056202bfb173737 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
@@ -402,10 +402,9 @@ Sources.CallStackSidebarPane = class extends UI.SimpleView { |
*/ |
registerShortcuts(registerShortcutDelegate) { |
registerShortcutDelegate( |
- Components.ShortcutsScreen.SourcesPanelShortcuts.NextCallFrame, this._selectNextCallFrameOnStack.bind(this)); |
+ UI.ShortcutsScreen.SourcesPanelShortcuts.NextCallFrame, this._selectNextCallFrameOnStack.bind(this)); |
registerShortcutDelegate( |
- Components.ShortcutsScreen.SourcesPanelShortcuts.PrevCallFrame, |
- this._selectPreviousCallFrameOnStack.bind(this)); |
+ UI.ShortcutsScreen.SourcesPanelShortcuts.PrevCallFrame, this._selectPreviousCallFrameOnStack.bind(this)); |
} |
}; |