Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js |
| index 58c70a5544f2f9ae7c61bdf43c778ad8a61c5809..e5a1165cb330efde12a9ebbff1b8f5fc81d78abd 100644 |
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js |
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js |
| @@ -35,12 +35,14 @@ InspectorTest.createWorkspace = function(ignoreEvents) |
| InspectorTest._mockTargetId = 1; |
| -InspectorTest.createMockTarget = function(id, debuggerModelConstructor, targetType) |
| +InspectorTest.createMockTarget = function(id, debuggerModelConstructor, capabilities) |
| { |
| var MockTarget = function(name, connection, callback) |
| { |
| - var type = typeof targetType === "undefined" ? WebInspector.Target.Type.Page : targetType; |
| - WebInspector.Target.call(this, InspectorTest.testTargetManager, name, type, connection, null, callback); |
| + var caps = typeof capabilities === "undefined" ? |
|
dgozman
2016/07/13 00:08:29
No abbreviations.
eostroukhov-old
2016/07/13 00:36:29
Done.
|
| + WebInspector.Target.Capability.Browser | WebInspector.Target.Capability.JS | WebInspector.Target.Capability.Network | WebInspector.Target.Capability.Worker : |
| + capabilities; |
| + WebInspector.Target.call(this, InspectorTest.testTargetManager, name, caps, connection, null, callback); |
| this.consoleModel = new WebInspector.ConsoleModel(this); |
| this.networkManager = new WebInspector.NetworkManager(this); |
| this.resourceTreeModel = new WebInspector.ResourceTreeModel(this); |