Clean up no-unused-vars lint errors

This commit is contained in:
Kevin Sawicki 2016-01-19 14:49:40 -08:00
parent ccce284a5b
commit 70bcb0ac5a
36 changed files with 228 additions and 344 deletions

View file

@ -87,7 +87,7 @@ class AllowTransparencyAttribute extends BooleanAttribute {
super(webViewConstants.ATTRIBUTE_ALLOWTRANSPARENCY, webViewImpl);
}
handleMutation(oldValue, newValue) {
handleMutation() {
if (!this.webViewImpl.guestInstanceId) {
return;
}
@ -105,7 +105,7 @@ class AutosizeDimensionAttribute extends WebViewAttribute {
return parseInt(this.webViewImpl.webviewNode.getAttribute(this.name)) || 0;
}
handleMutation(oldValue, newValue) {
handleMutation() {
if (!this.webViewImpl.guestInstanceId) {
return;
}