summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/DatabaseQueryView.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/DatabaseQueryView.js')
-rw-r--r--WebCore/inspector/front-end/DatabaseQueryView.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/inspector/front-end/DatabaseQueryView.js b/WebCore/inspector/front-end/DatabaseQueryView.js
index a179eaa..111246f 100644
--- a/WebCore/inspector/front-end/DatabaseQueryView.js
+++ b/WebCore/inspector/front-end/DatabaseQueryView.js
@@ -139,7 +139,7 @@ WebInspector.DatabaseQueryView.prototype = {
_queryFinished: function(query, columnNames, values)
{
- var dataGrid = WebInspector.panels.storage.dataGridForResult(columnNames, values);
+ var dataGrid = WebInspector.panels.resources.dataGridForResult(columnNames, values);
var trimmedQuery = query.trim();
if (dataGrid) {
@@ -149,7 +149,7 @@ WebInspector.DatabaseQueryView.prototype = {
}
if (trimmedQuery.match(/^create /i) || trimmedQuery.match(/^drop table /i))
- WebInspector.panels.storage.updateDatabaseTables(this.database);
+ WebInspector.panels.resources.updateDatabaseTables(this.database);
},
_queryError: function(query, error)