| Index: Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/Source/devtools/front_end/sources/SourcesPanel.js b/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 89fe31e1471b3afbb5ee98eefbf5a308ce8718d5..26a6b253f7574fdfad53505d67cae7c61e771f3b 100644
|
| --- a/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -742,6 +742,8 @@ WebInspector.SourcesPanel.prototype = {
|
| this._stepOutButton = this._createButtonAndRegisterShortcutsForAction("step-out-toolbar-item", title, "debugger.step-out");
|
| debugToolbar.appendToolbarItem(this._stepOutButton);
|
|
|
| + debugToolbar.appendSeparator();
|
| +
|
| // Toggle Breakpoints
|
| this._toggleBreakpointsButton = new WebInspector.ToolbarButton(WebInspector.UIString("Deactivate breakpoints."), "breakpoint-toolbar-item");
|
| this._toggleBreakpointsButton.setToggled(false);
|
| @@ -753,6 +755,8 @@ WebInspector.SourcesPanel.prototype = {
|
| this._pauseOnExceptionButton.addEventListener("click", this._togglePauseOnExceptions, this);
|
| debugToolbar.appendToolbarItem(this._pauseOnExceptionButton);
|
|
|
| + debugToolbar.appendSeparator();
|
| +
|
| // Async operations
|
| debugToolbar.appendToolbarItem(new WebInspector.ToolbarCheckbox(WebInspector.UIString("Async"), WebInspector.UIString("Capture async stack traces"), WebInspector.moduleSetting("enableAsyncStackTraces")));
|
|
|
|
|