| Index: third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js b/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
|
| index 26ccb97a0d5fbe5d901ac3a48f91a94ffa04ab99..80a6ef424e4e36c2fe9862de1c91975135835495 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/persistence/DefaultMapping.js
|
| @@ -7,7 +7,7 @@
|
| Persistence.DefaultMapping = class {
|
| /**
|
| * @param {!Workspace.Workspace} workspace
|
| - * @param {!Workspace.FileSystemMapping} fileSystemMapping
|
| + * @param {!Persistence.FileSystemMapping} fileSystemMapping
|
| * @param {function(!Persistence.PersistenceBinding)} onBindingCreated
|
| * @param {function(!Persistence.PersistenceBinding)} onBindingRemoved
|
| */
|
| @@ -23,8 +23,10 @@ Persistence.DefaultMapping = class {
|
| workspace.addEventListener(Workspace.Workspace.Events.UISourceCodeAdded, this._onUISourceCodeAdded, this),
|
| workspace.addEventListener(Workspace.Workspace.Events.UISourceCodeRemoved, this._onUISourceCodeRemoved, this),
|
| workspace.addEventListener(Workspace.Workspace.Events.ProjectRemoved, this._onProjectRemoved, this),
|
| - this._fileSystemMapping.addEventListener(Workspace.FileSystemMapping.Events.FileMappingAdded, this._remap, this),
|
| - this._fileSystemMapping.addEventListener(Workspace.FileSystemMapping.Events.FileMappingRemoved, this._remap, this)
|
| + this._fileSystemMapping.addEventListener(
|
| + Persistence.FileSystemMapping.Events.FileMappingAdded, this._remap, this),
|
| + this._fileSystemMapping.addEventListener(
|
| + Persistence.FileSystemMapping.Events.FileMappingRemoved, this._remap, this)
|
| ];
|
| this._remap();
|
| }
|
|
|