Chromium Code Reviews| Index: extensions/renderer/resources/guest_view/web_view/web_view_attributes.js |
| diff --git a/extensions/renderer/resources/guest_view/web_view/web_view_attributes.js b/extensions/renderer/resources/guest_view/web_view/web_view_attributes.js |
| index ce538fdc3df3c2ff51c44d006036eae868eed295..551706e102c7cc6232f121edbf75f487a74b125d 100644 |
| --- a/extensions/renderer/resources/guest_view/web_view/web_view_attributes.js |
| +++ b/extensions/renderer/resources/guest_view/web_view/web_view_attributes.js |
| @@ -199,10 +199,12 @@ SrcAttribute.prototype.handleMutation = function(oldValue, newValue) { |
| }; |
| SrcAttribute.prototype.attach = function() { |
| + GuestViewAttributes.Attribute.prototype.attach.call(this); |
|
paulmeyer
2015/03/27 22:40:40
Why are these calls to the base attach/detach need
Fady Samuel
2015/03/27 22:56:36
They're unnecessary. They're remnants from an olde
|
| this.parse(); |
| }; |
| SrcAttribute.prototype.detach = function() { |
| + GuestViewAttributes.Attribute.prototype.detach.call(this); |
|
paulmeyer
2015/03/27 22:40:40
See above.
Fady Samuel
2015/03/27 22:56:36
Done.
|
| this.beforeFirstNavigation = true; |
| }; |