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

Unified Diff: LayoutTests/inspector/sources/debugger/callstack-placards-discarded.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/sources/debugger/callstack-placards-discarded.html
diff --git a/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html b/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html
index 8eb6ee97edf5428af6a546ee3d037c56ed34b6c9..32b298daf9c8f8d75d491adb0c5868514b0e9a85 100644
--- a/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html
+++ b/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html
@@ -14,7 +14,7 @@ var test = function()
InspectorTest.runDebuggerTestSuite([
function testCallStackPlacardsDiscarded(next)
{
- WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, didPause, this);
+ InspectorTest.debuggerModel.addEventListener(WebInspector.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(WebInspector.debuggerModel.target()).scriptDataMap.valuesArray();
+ var infos = WebInspector.debuggerWorkspaceBinding._targetToData.get(InspectorTest.debuggerModel.target()).scriptDataMap.valuesArray();
infos.forEach(function(info) {
count += info._locations.size;
});

Powered by Google App Engine
This is Rietveld 408576698