Chromium Code Reviews| Index: Source/devtools/front_end/inspector.js |
| diff --git a/Source/devtools/front_end/inspector.js b/Source/devtools/front_end/inspector.js |
| index fb709b40035a8f5f8af550f18b21b0ce90219c27..dd912fef3d62d7b0394373d492a84a588f12a2d0 100644 |
| --- a/Source/devtools/front_end/inspector.js |
| +++ b/Source/devtools/front_end/inspector.js |
| @@ -45,7 +45,10 @@ var WebInspector = { |
| var profiles = new WebInspector.ProfilesPanelDescriptor(); |
| var audits = new WebInspector.PanelDescriptor("audits", WebInspector.UIString("Audits"), "AuditsPanel", "AuditsPanel.js"); |
| var console = new WebInspector.PanelDescriptor("console", WebInspector.UIString("Console"), "ConsolePanel"); |
|
Jacob
2013/12/05 22:56:12
comment out these next 4 lines before checkin so u
Cutch
2013/12/05 23:09:37
Done.
|
| - var allDescriptors = [elements, resources, network, sources, timeline, profiles, audits, console]; |
| + var dartObservatory = new WebInspector.PanelDescriptor("observatory", WebInspector.UIString("DartObservatory"), undefined, undefined, |
| + new WebInspector.DartPanel("observatory", "http://localhost:8887/")); |
| + |
| + var allDescriptors = [elements, resources, network, sources, timeline, profiles, audits, console, dartObservatory]; |
| if (WebInspector.experimentsSettings.layersPanel.isEnabled()) { |
| var layers = new WebInspector.LayersPanelDescriptor(); |
| allDescriptors.push(layers); |
| @@ -171,7 +174,7 @@ var WebInspector = { |
| if (this._drawerStatusBarHeader) { |
| this._removeDrawerView(); |
| - // Once drawer is closed console should be shown if it was shown before current view replaced it in drawer. |
| + // Once drawer is closed console should be shown if it was shown before current view replaced it in drawer. |
|
Jacob
2013/12/05 22:56:12
add back in the space to keep our diff small with
Cutch
2013/12/05 23:09:37
Done.
|
| if (this._consoleWasShown) |
| this.showConsole(); |
| else |