Index: extensions/renderer/resources/guest_view/web_view/web_view.js |
diff --git a/extensions/renderer/resources/guest_view/web_view/web_view.js b/extensions/renderer/resources/guest_view/web_view/web_view.js |
index fd0e45c81b01e04239d6704d51194cc3d1cfff2d..49bb9a69f215fc7c45985b90f2a4f8c778ce1266 100644 |
--- a/extensions/renderer/resources/guest_view/web_view/web_view.js |
+++ b/extensions/renderer/resources/guest_view/web_view/web_view.js |
@@ -137,7 +137,7 @@ WebViewImpl.prototype.onSizeChanged = function(webViewEvent) { |
WebViewImpl.prototype.createGuest = function() { |
this.guest.create(this.buildParams(), function() { |
- this.attachWindow(); |
+ this.attachWindow$(); |
}.bind(this)); |
}; |
@@ -178,7 +178,7 @@ WebViewImpl.prototype.buildContainerParams = function() { |
return params; |
}; |
-WebViewImpl.prototype.attachWindow = function(opt_guestInstanceId) { |
+WebViewImpl.prototype.attachWindow$ = function(opt_guestInstanceId) { |
// If |opt_guestInstanceId| was provided, then a different existing guest is |
// being attached to this webview, and the current one will get destroyed. |
if (opt_guestInstanceId) { |