| 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 05cb04d135b8cdbf3795b86649204eb8c16aae42..8423ebee8e0038b4f2f6007deff60d9e2f3c20ef 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
|
| @@ -18,19 +18,19 @@ WebInspector.Persistence = function(workspace, breakpointManager, fileSystemMapp
|
| this._filePathPrefixesToBindingCount = new Map();
|
|
|
| this._mapping = new WebInspector.DefaultMapping(workspace, fileSystemMapping, this._onBindingCreated.bind(this), this._onBindingRemoved.bind(this));
|
| -}
|
| +};
|
|
|
| WebInspector.Persistence._binding = Symbol("Persistence.Binding");
|
| WebInspector.Persistence._muteCommit = Symbol("Persistence.MuteCommit");
|
|
|
| WebInspector.Persistence._NodePrefix = "(function (exports, require, module, __filename, __dirname) { ";
|
| -WebInspector.Persistence._NodeSuffix = "\n});"
|
| +WebInspector.Persistence._NodeSuffix = "\n});";
|
| WebInspector.Persistence._NodeShebang = "#!/usr/bin/env node\n";
|
|
|
| WebInspector.Persistence.Events = {
|
| BindingCreated: Symbol("BindingCreated"),
|
| BindingRemoved: Symbol("BindingRemoved")
|
| -}
|
| +};
|
|
|
| WebInspector.Persistence.prototype = {
|
| /**
|
| @@ -228,7 +228,7 @@ WebInspector.Persistence.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -239,7 +239,7 @@ WebInspector.PersistenceBinding = function(network, fileSystem)
|
| {
|
| this.network = network;
|
| this.fileSystem = fileSystem;
|
| -}
|
| +};
|
|
|
| /** @type {!WebInspector.Persistence} */
|
| WebInspector.persistence;
|
|
|