| Index: third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js b/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js
|
| index 6b196e7088644aab3259680c393da00419300616..45b43493b2e5446d6aed8dfef63a855fa8efadb8 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/bindings/DebuggerWorkspaceBinding.js
|
| @@ -9,11 +9,9 @@ Bindings.DebuggerWorkspaceBinding = class {
|
| /**
|
| * @param {!SDK.TargetManager} targetManager
|
| * @param {!Workspace.Workspace} workspace
|
| - * @param {!Bindings.NetworkMapping} networkMapping
|
| */
|
| - constructor(targetManager, workspace, networkMapping) {
|
| + constructor(targetManager, workspace) {
|
| this._workspace = workspace;
|
| - this._networkMapping = networkMapping;
|
|
|
| // FIXME: Migrate from _targetToData to _debuggerModelToData.
|
| /** @type {!Map.<!SDK.Target, !Bindings.DebuggerWorkspaceBinding.TargetData>} */
|
| @@ -361,13 +359,12 @@ Bindings.DebuggerWorkspaceBinding.TargetData = class {
|
| this.callFrameLocations = new Set();
|
|
|
| var workspace = debuggerWorkspaceBinding._workspace;
|
| - var networkMapping = debuggerWorkspaceBinding._networkMapping;
|
|
|
| this._defaultMapping = new Bindings.DefaultScriptMapping(debuggerModel, workspace, debuggerWorkspaceBinding);
|
| this._resourceMapping =
|
| - new Bindings.ResourceScriptMapping(debuggerModel, workspace, networkMapping, debuggerWorkspaceBinding);
|
| + new Bindings.ResourceScriptMapping(debuggerModel, workspace, debuggerWorkspaceBinding);
|
| this._compilerMapping = new Bindings.CompilerScriptMapping(
|
| - debuggerModel, workspace, networkMapping, Bindings.NetworkProject.forTarget(this._target),
|
| + debuggerModel, workspace, Bindings.NetworkProject.forTarget(this._target),
|
| debuggerWorkspaceBinding);
|
|
|
| /** @type {!Map.<!Workspace.UISourceCode, !Bindings.DebuggerSourceMapping>} */
|
|
|