| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/callstack-placards-discarded.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/callstack-placards-discarded.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/callstack-placards-discarded.html
|
| index 32b298daf9c8f8d75d491adb0c5868514b0e9a85..d716b6c307da6eb39d2881522cfe406112d63a74 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/callstack-placards-discarded.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/callstack-placards-discarded.html
|
| @@ -14,7 +14,7 @@ var test = function()
|
| InspectorTest.runDebuggerTestSuite([
|
| function testCallStackPlacardsDiscarded(next)
|
| {
|
| - InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, didPause, this);
|
| + InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerPaused, didPause, this);
|
| var previousCount = undefined;
|
| function didPause(event)
|
| {
|
| @@ -55,7 +55,7 @@ var test = function()
|
| function liveLocationsCount()
|
| {
|
| var count = 0;
|
| - var infos = WebInspector.debuggerWorkspaceBinding._targetToData.get(InspectorTest.debuggerModel.target()).scriptDataMap.valuesArray();
|
| + var infos = Bindings.debuggerWorkspaceBinding._targetToData.get(InspectorTest.debuggerModel.target()).scriptDataMap.valuesArray();
|
| infos.forEach(function(info) {
|
| count += info._locations.size;
|
| });
|
|
|