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

Unified Diff: LayoutTests/inspector/profiler/heap-snapshot-inspect-dom-wrapper.html

Issue 268293003: DevTools: Get rid of WebInspector.panels (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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/profiler/heap-snapshot-inspect-dom-wrapper.html
diff --git a/LayoutTests/inspector/profiler/heap-snapshot-inspect-dom-wrapper.html b/LayoutTests/inspector/profiler/heap-snapshot-inspect-dom-wrapper.html
index cc8f685c502646a803884b260d1ee4d4118f51e0..0bdd2bdfebfc52fb990fa52b5cb5c0291c1c6b61 100644
--- a/LayoutTests/inspector/profiler/heap-snapshot-inspect-dom-wrapper.html
+++ b/LayoutTests/inspector/profiler/heap-snapshot-inspect-dom-wrapper.html
@@ -31,7 +31,7 @@ function test()
return clear("FAILED: wrong number of recorded profiles was found. profiles.length = " + profiles.length);
var profile = profiles[profiles.length - 1];
- WebInspector.panels.profiles.showProfile(profile);
+ WebInspector.inspectorView.panel("profiles").showProfile(profile);
}
function snapshotReceived(profile)
@@ -89,7 +89,7 @@ function test()
if (errorMessage)
InspectorTest.addResult(errorMessage);
setTimeout(done, 0);
- WebInspector.panels.profiles._reset();
+ WebInspector.inspectorView.panel("profiles")._reset();
return !errorMessage;
}

Powered by Google App Engine
This is Rietveld 408576698