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

Unified Diff: LayoutTests/inspector/reveal-objects.html

Issue 881263002: DevTools: use target-based model accessors only. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 months 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: LayoutTests/inspector/reveal-objects.html
diff --git a/LayoutTests/inspector/reveal-objects.html b/LayoutTests/inspector/reveal-objects.html
index de142072dd1ef97e1177fc292b68ed5589afbc2c..64e6e52d71d92e9fc617b52312bfd463467f1f6b 100644
--- a/LayoutTests/inspector/reveal-objects.html
+++ b/LayoutTests/inspector/reveal-objects.html
@@ -33,7 +33,7 @@ function test() {
{
installHooks();
- WebInspector.resourceTreeModel.forAllResources(function(r) {
+ InspectorTest.resourceTreeModel.forAllResources(function(r) {
if (r.url.indexOf("inspector-test.js") !== -1) {
resource = r;
return true;
@@ -52,7 +52,7 @@ function test() {
function firstXhrCallback()
{
- requestWithResource = WebInspector.networkLog.requestForURL(resource.url);
+ requestWithResource = InspectorTest.networkLog.requestForURL(resource.url);
InspectorTest.evaluateInPage("loadResource('missing.js')", secondXhrCallback);
}

Powered by Google App Engine
This is Rietveld 408576698