diff options
Diffstat (limited to 'WebCore/inspector/front-end/Panel.js')
-rw-r--r-- | WebCore/inspector/front-end/Panel.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/inspector/front-end/Panel.js b/WebCore/inspector/front-end/Panel.js index 5b01191..b916708 100644 --- a/WebCore/inspector/front-end/Panel.js +++ b/WebCore/inspector/front-end/Panel.js @@ -373,12 +373,12 @@ WebInspector.Panel.prototype = { visibleView.resize(); }, - canShowSourceLineForURL: function(url) + canShowSourceLine: function(url, line) { return false; }, - showSourceLineForURL: function(url, line) + showSourceLine: function(url, line) { return false; }, |