| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| index e20a94f1a45b96f34878bb08169bcae914d71d36..247afc0a5e9c23fab46d880f6bc8f66f2d1f14f9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| @@ -35,10 +35,10 @@
|
| */
|
| WebInspector.JavaScriptSourceFrame = function(uiSourceCode)
|
| {
|
| + WebInspector.UISourceCodeFrame.call(this, uiSourceCode);
|
| +
|
| this._scriptsPanel = WebInspector.SourcesPanel.instance();
|
| this._breakpointManager = WebInspector.breakpointManager;
|
| -
|
| - WebInspector.UISourceCodeFrame.call(this, uiSourceCode);
|
| if (uiSourceCode.project().type() === WebInspector.projectTypes.Debugger)
|
| this.element.classList.add("source-frame-debugger-script");
|
|
|
|
|