We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CONSOLE MESSAGE: line 7735: Uncaught ReferenceError: errorCallback is not defined
The problem appears to the the attempt in webkitRequestFileSystem$3 to overwrite a parameter that does not exist in that version of the shim.
$.$defineNativeClass('DOMWindow', ["navigator?", "name?", "length?"], { webkitRequestFileSystem$4: function(type, size, successCallback, errorCallback) { return this.webkitRequestFileSystem(type,size,$.convertDartClosureToJS(successCallback, 1),$.convertDartClosureToJS(errorCallback, 1)); }, webkitRequestFileSystem$3: function(type,size,successCallback) { successCallback = $.convertDartClosureToJS(successCallback, 1); errorCallback = $.convertDartClosureToJS(errorCallback, 1); // HERE return this.webkitRequestFileSystem(type,size,successCallback); },
The text was updated successfully, but these errors were encountered:
Set owner to [email protected]. Removed Priority-Medium label. Added Priority-High, Accepted labels.
Sorry, something went wrong.
This comment was originally written by [email protected]
Fixed in https://chromiumcodereview.appspot.com/10539109
Added Fixed label.
Marked this as blocking #3022.
How can this be blocking #3022 since this bug is fixed? Does the same problem show up in another case?
No branches or pull requests
CONSOLE MESSAGE: line 7735: Uncaught ReferenceError: errorCallback is not defined
The problem appears to the the attempt in webkitRequestFileSystem$3 to overwrite a parameter that does not exist in that version of the shim.
$.$defineNativeClass('DOMWindow', ["navigator?", "name?", "length?"], {
webkitRequestFileSystem$4: function(type, size, successCallback, errorCallback) {
return this.webkitRequestFileSystem(type,size,$.convertDartClosureToJS(successCallback, 1),$.convertDartClosureToJS(errorCallback, 1));
},
webkitRequestFileSystem$3: function(type,size,successCallback) {
successCallback = $.convertDartClosureToJS(successCallback, 1);
errorCallback = $.convertDartClosureToJS(errorCallback, 1); // HERE
return this.webkitRequestFileSystem(type,size,successCallback);
},
The text was updated successfully, but these errors were encountered: