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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing-session-id.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-session-id.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing-session-id.html b/third_party/WebKit/LayoutTests/inspector/tracing-session-id.html
index fe5b0a85b17cdf5295b42f7166e0861ce377c918..c93e4195dc93bc27a33a647a10ed28706597a089 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing-session-id.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing-session-id.html
@@ -21,11 +21,11 @@ function test()
function processEvent(event)
{
var metadataEvents = [
- WebInspector.TimelineModel.RecordType.SetLayerTreeId,
- WebInspector.TimelineModel.RecordType.TracingStartedInPage
+ TimelineModel.TimelineModel.RecordType.SetLayerTreeId,
+ TimelineModel.TimelineModel.RecordType.TracingStartedInPage
];
- if (!event.hasCategory(WebInspector.TracingModel.DevToolsMetadataEventCategory) || metadataEvents.indexOf(event.name) < 0)
+ if (!event.hasCategory(SDK.TracingModel.DevToolsMetadataEventCategory) || metadataEvents.indexOf(event.name) < 0)
return;
InspectorTest.assertEquals(InspectorTest.timelineModel().sessionId(), event.args["data"]["sessionId"]);

Powered by Google App Engine
This is Rietveld 408576698