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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/worker-js-frames.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/inspector/tracing/worker-js-frames.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/worker-js-frames.html b/third_party/WebKit/LayoutTests/inspector/tracing/worker-js-frames.html
index d80c305bf5d82bd2abce25649efe9e7e2875370e..871225a73d8131060ba85f910c3f05c755b85fdc 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/worker-js-frames.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/worker-js-frames.html
@@ -88,9 +88,9 @@ function test()
function processEvent(expectedFunctions, event)
{
- if (event.name === WebInspector.TimelineModel.RecordType.EvaluateScript)
+ if (event.name === TimelineModel.TimelineModel.RecordType.EvaluateScript)
InspectorTest.printTraceEventProperties(event);
- if (event.name === WebInspector.TimelineModel.RecordType.JSFrame)
+ if (event.name === TimelineModel.TimelineModel.RecordType.JSFrame)
expectedFunctions.delete(event.args.data.functionName);
return expectedFunctions;
}

Powered by Google App Engine
This is Rietveld 408576698