| Index: third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js b/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| index 209cfb6d99c616038bb3263c06df6d1012842075..681681e29798ae2a13c055b3b3091ff72e9ae213 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| @@ -17,12 +17,15 @@ WebInspector.Persistence = class extends WebInspector.Object {
|
| /** @type {!Map<string, number>} */
|
| this._filePathPrefixesToBindingCount = new Map();
|
|
|
| - if (Runtime.experiments.isEnabled('persistence2'))
|
| + if (Runtime.experiments.isEnabled('persistence2')) {
|
| + var linkDecorator = new WebInspector.PersistenceUtils.LinkDecorator(this);
|
| + WebInspector.Linkifier.setLinkDecorator(linkDecorator);
|
| this._mapping =
|
| new WebInspector.Automapping(workspace, this._onBindingCreated.bind(this), this._onBindingRemoved.bind(this));
|
| - else
|
| + } else {
|
| this._mapping = new WebInspector.DefaultMapping(
|
| workspace, fileSystemMapping, this._onBindingCreated.bind(this), this._onBindingRemoved.bind(this));
|
| + }
|
| }
|
|
|
| /**
|
|
|