| Index: third_party/WebKit/Source/devtools/front_end/devtools.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/devtools.js b/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| index f3a91417f68c5ed57a954f58d7eafead6c55e625..ff94fb66d6d5ca44708116222bdc431610deec17 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/devtools.js
|
| @@ -1053,6 +1053,14 @@ function installBackwardsCompatibility()
|
|
|
| // Support for legacy (<M49) frontends.
|
| Event.prototype.deepPath = undefined;
|
| +
|
| + // Support for legacy (<53) frontends.
|
| + window.FileError = {
|
| + NOT_FOUND_ERR: DOMException.NOT_FOUND_ERR,
|
| + ABORT_ERR: DOMException.ABORT_ERR,
|
| + INVALID_MODIFICATION_ERR: DOMException.INVALID_MODIFICATION_ERR,
|
| + NOT_READABLE_ERR: 0 // No matching DOMException, so code will be 0.
|
| + };
|
| }
|
|
|
| function windowLoaded()
|
|
|