Window.resolveLocalFileSystemURI has been deprecated. This update adds its replacement, resolveLocalFileSystemURL.
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/49c3296c Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/49c3296c Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/49c3296c Branch: refs/heads/master Commit: 49c3296cd325e0ae3e31ee48ca0d176094ec2e6a Parents: 8d8b2f2 Author: Peter Ent <[email protected]> Authored: Thu Mar 10 06:46:18 2016 -0500 Committer: Peter Ent <[email protected]> Committed: Thu Mar 10 06:46:18 2016 -0500 ---------------------------------------------------------------------- externs/js/missing.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/49c3296c/externs/js/missing.js ---------------------------------------------------------------------- diff --git a/externs/js/missing.js b/externs/js/missing.js index cb6980e..d53e13b 100644 --- a/externs/js/missing.js +++ b/externs/js/missing.js @@ -17,7 +17,7 @@ * */ - + // webkit_notifications /** * @constructor @@ -49,6 +49,16 @@ var window; Window.prototype.document; /** + * resolveLocalFileSystemURI has been deprecated; this is the replacement. + * @see http://www.w3.org/TR/file-system-api/#widl-LocalFileSystem-resolveLocalFileSystemURL + * @param {string} url + * @param {function(!Entry)} successCallback + * @param {function(!FileError)=} errorCallback + */ +Window.prototype.resolveLocalFileSystemURL = function(url, successCallback, + errorCallback) {} + +/** * @constructor */ function Promise() {} @@ -162,4 +172,4 @@ function trace(rest) {} * @type {!Console} * @const */ -var console; \ No newline at end of file +var console;
