| 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 a1b9c82e873cd6955db99066eb2c8f84dcb416e5..1043480e52d2f81476786c6175c201ff91569f06 100644
|
| --- a/LayoutTests/inspector/profiler/heap-snapshot-inspect-dom-wrapper.html
|
| +++ b/LayoutTests/inspector/profiler/heap-snapshot-inspect-dom-wrapper.html
|
| @@ -14,7 +14,7 @@ function handleLoad()
|
| function test()
|
| {
|
| WebInspector.showPanel("profiles");
|
| - var heapProfileType = WebInspector.panels.profiles.getProfileType("HEAP");
|
| + var heapProfileType = WebInspector.ProfileTypeRegistry.instance.heapSnapshotProfileType;
|
| heapProfileType.addEventListener(WebInspector.HeapSnapshotProfileType.SnapshotReceived, finishHeapSnapshot);
|
| InspectorTest.addSniffer(heapProfileType, "_snapshotReceived", snapshotReceived);
|
| heapProfileType._takeHeapSnapshot(function() {});
|
| @@ -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.panels.profiles.showProfile(profile);
|
| }
|
|
|
| function snapshotReceived(profile)
|
|
|