| Index: third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js b/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js
|
| index c6fa0c29b3e0c07720fc880c39350df50f75b3d7..ee5d5d6e8f2696466d113d7a0a1022eca3c116be 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js
|
| @@ -41,13 +41,13 @@ WebInspector.FileManager = function()
|
| InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.SavedURL, this._savedURL, this);
|
| InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.CanceledSaveURL, this._canceledSaveURL, this);
|
| InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.AppendedToURL, this._appendedToURL, this);
|
| -}
|
| +};
|
|
|
| /** @enum {symbol} */
|
| WebInspector.FileManager.Events = {
|
| SavedURL: Symbol("SavedURL"),
|
| AppendedToURL: Symbol("AppendedToURL")
|
| -}
|
| +};
|
|
|
| WebInspector.FileManager.prototype = {
|
| /**
|
| @@ -137,7 +137,7 @@ WebInspector.FileManager.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @type {?WebInspector.FileManager}
|
|
|