Bug 1547028 - Make the debugger DebuggerPanel instead of NewDebuggerPanel r=jlast

Differential Revision: https://phabricator.services.mozilla.com/D28875

--HG--
extra : moz-landing-system : lando
This commit is contained in:
David Walsh 2019-04-26 12:24:57 +00:00
Родитель b3c08a7ca4
Коммит 6d36ef7fff
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -11,7 +11,7 @@ const osString = Services.appinfo.OS;
loader.lazyGetter(this, "OptionsPanel", () => require("devtools/client/framework/toolbox-options").OptionsPanel);
loader.lazyGetter(this, "InspectorPanel", () => require("devtools/client/inspector/panel").InspectorPanel);
loader.lazyGetter(this, "WebConsolePanel", () => require("devtools/client/webconsole/panel").WebConsolePanel);
loader.lazyGetter(this, "NewDebuggerPanel", () => require("devtools/client/debugger/panel").DebuggerPanel);
loader.lazyGetter(this, "DebuggerPanel", () => require("devtools/client/debugger/panel").DebuggerPanel);
loader.lazyGetter(this, "StyleEditorPanel", () => require("devtools/client/styleeditor/panel").StyleEditorPanel);
loader.lazyGetter(this, "MemoryPanel", () => require("devtools/client/memory/panel").MemoryPanel);
loader.lazyGetter(this, "PerformancePanel", () => require("devtools/client/performance/panel").PerformancePanel);
@ -144,7 +144,7 @@ Tools.jsdebugger = {
return true;
},
build: function(iframeWindow, toolbox) {
return new NewDebuggerPanel(iframeWindow, toolbox);
return new DebuggerPanel(iframeWindow, toolbox);
},
};