Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1031)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
index 19f74ece6398ba7b54d9532b378c4613e96b93ac..9a85f61eb29f60786d7555edd023299bc42dd714 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
@@ -4,7 +4,7 @@ InspectorTest.preloadPanel("resources");
InspectorTest.dumpIndexedDBTree = function()
{
InspectorTest.addResult("Dumping IndexedDB tree:");
- var indexedDBTreeElement = WebInspector.panels.resources.indexedDBListTreeElement;
+ var indexedDBTreeElement = UI.panels.resources.indexedDBListTreeElement;
if (!indexedDBTreeElement.childCount()) {
InspectorTest.addResult(" (empty)");
return;
@@ -101,7 +101,7 @@ InspectorTest.addIDBValue = function(frameId, databaseName, objectStoreName, val
InspectorTest.createIndexedDBModel = function()
{
- var indexedDBModel = new WebInspector.IndexedDBModel(WebInspector.targetManager.mainTarget(), InspectorTest.securityOriginManager);
+ var indexedDBModel = new Resources.IndexedDBModel(SDK.targetManager.mainTarget(), InspectorTest.securityOriginManager);
indexedDBModel.enable();
return indexedDBModel;
};

Powered by Google App Engine
This is Rietveld 408576698