| Index: third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html
|
| index e154aaf6c0bcdbf1ff409767bb343b36d3a06840..0a0b31ba7fd80f48cb8af413799d1d6695235bc3 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters.html
|
| @@ -12,13 +12,13 @@ function submit()
|
| function test()
|
| {
|
| InspectorTest.evaluateInPage("submit()");
|
| - InspectorTest.networkManager.addEventListener(WebInspector.NetworkManager.Events.RequestFinished, onRequestFinished);
|
| + InspectorTest.networkManager.addEventListener(SDK.NetworkManager.Events.RequestFinished, onRequestFinished);
|
|
|
| function onRequestFinished(event)
|
| {
|
| var request = event.data;
|
| InspectorTest.addResult(request.url);
|
| - InspectorTest.addObject(new WebInspector.HAREntry(request).build(), InspectorTest.HARPropertyFormatters);
|
| + InspectorTest.addObject(new SDK.HAREntry(request).build(), InspectorTest.HARPropertyFormatters);
|
| InspectorTest.completeTest();
|
| }
|
| }
|
|
|