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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.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/buffer-usage.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html b/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html
index b07a38b98269fc1e41e4a42cba2d10533bd71cad..0e2ec1a01d0e4a1f7db517e5dd8f57ed06d27a78 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/buffer-usage.html
@@ -6,12 +6,12 @@
function test()
{
- WebInspector.TestTimelineLifecycleDelegate = function()
+ TestTimelineLifecycleDelegate = function()
{
this._hadLoadingProgress = false;
}
- WebInspector.TestTimelineLifecycleDelegate.prototype = {
+ TestTimelineLifecycleDelegate.prototype = {
recordingStarted: function()
{
InspectorTest.addResult("TimelineLifecycleDelegate.recordingStarted");
@@ -45,10 +45,10 @@ function test()
InspectorTest.completeTest();
},
- __proto__: WebInspector.TimelineLifecycleDelegate
+ __proto__: Timeline.TimelineLifecycleDelegate
};
- var controller = new WebInspector.TimelineController(WebInspector.targetManager.mainTarget(), new WebInspector.TestTimelineLifecycleDelegate(), InspectorTest.createTracingModel());
+ var controller = new Timeline.TimelineController(SDK.targetManager.mainTarget(), new TestTimelineLifecycleDelegate(), InspectorTest.createTracingModel());
controller.startRecording();
}

Powered by Google App Engine
This is Rietveld 408576698