| Index: extensions/renderer/resources/guest_view/extension_view.js
|
| diff --git a/extensions/renderer/resources/guest_view/extension_view.js b/extensions/renderer/resources/guest_view/extension_view.js
|
| index fc560ff349f7d575407f9b0de442063181d4475c..8ca6dfecd1feebea94c73340f3cb99f3f83d0ebb 100644
|
| --- a/extensions/renderer/resources/guest_view/extension_view.js
|
| +++ b/extensions/renderer/resources/guest_view/extension_view.js
|
| @@ -52,7 +52,7 @@ ExtensionViewImpl.prototype.handleAttributeMutation = function(
|
| return;
|
|
|
| // Let the changed attribute handle its own mutation;
|
| - this.attributes[attributeName].handleMutation(oldValue, newValue);
|
| + this.attributes[attributeName].maybeHandleMutation(oldValue, newValue);
|
| };
|
|
|
| ExtensionViewImpl.prototype.onElementDetached = function() {
|
| @@ -63,4 +63,4 @@ ExtensionViewImpl.prototype.onElementDetached = function() {
|
| GuestViewContainer.registerElement(ExtensionViewImpl);
|
|
|
| // Exports.
|
| -exports.ExtensionViewImpl = ExtensionViewImpl;
|
| +exports.ExtensionViewImpl = ExtensionViewImpl;
|
|
|