| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| index 88eafe30a6d6c0d9b24ff60c6f9dea3f1354a562..8f39d886e0eac9dcde3761cf3a684657bf9c0547 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesView.js
|
| @@ -107,21 +107,19 @@ Sources.SourcesView = class extends UI.VBox {
|
| }
|
|
|
| registerShortcut.call(
|
| - this, Components.ShortcutsScreen.SourcesPanelShortcuts.JumpToPreviousLocation,
|
| + this, UI.ShortcutsScreen.SourcesPanelShortcuts.JumpToPreviousLocation,
|
| this._onJumpToPreviousLocation.bind(this));
|
| registerShortcut.call(
|
| - this, Components.ShortcutsScreen.SourcesPanelShortcuts.JumpToNextLocation,
|
| - this._onJumpToNextLocation.bind(this));
|
| + this, UI.ShortcutsScreen.SourcesPanelShortcuts.JumpToNextLocation, this._onJumpToNextLocation.bind(this));
|
| registerShortcut.call(
|
| - this, Components.ShortcutsScreen.SourcesPanelShortcuts.CloseEditorTab, this._onCloseEditorTab.bind(this));
|
| + this, UI.ShortcutsScreen.SourcesPanelShortcuts.CloseEditorTab, this._onCloseEditorTab.bind(this));
|
| + registerShortcut.call(this, UI.ShortcutsScreen.SourcesPanelShortcuts.GoToLine, this._showGoToLineDialog.bind(this));
|
| registerShortcut.call(
|
| - this, Components.ShortcutsScreen.SourcesPanelShortcuts.GoToLine, this._showGoToLineDialog.bind(this));
|
| + this, UI.ShortcutsScreen.SourcesPanelShortcuts.GoToMember, this._showOutlineDialog.bind(this));
|
| registerShortcut.call(
|
| - this, Components.ShortcutsScreen.SourcesPanelShortcuts.GoToMember, this._showOutlineDialog.bind(this));
|
| - registerShortcut.call(
|
| - this, Components.ShortcutsScreen.SourcesPanelShortcuts.ToggleBreakpoint, this._toggleBreakpoint.bind(this));
|
| - registerShortcut.call(this, Components.ShortcutsScreen.SourcesPanelShortcuts.Save, this._save.bind(this));
|
| - registerShortcut.call(this, Components.ShortcutsScreen.SourcesPanelShortcuts.SaveAll, this._saveAll.bind(this));
|
| + this, UI.ShortcutsScreen.SourcesPanelShortcuts.ToggleBreakpoint, this._toggleBreakpoint.bind(this));
|
| + registerShortcut.call(this, UI.ShortcutsScreen.SourcesPanelShortcuts.Save, this._save.bind(this));
|
| + registerShortcut.call(this, UI.ShortcutsScreen.SourcesPanelShortcuts.SaveAll, this._saveAll.bind(this));
|
| }
|
|
|
| /**
|
|
|