Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: extensions/renderer/resources/guest_view/web_view/web_view_action_requests.js

Issue 1165773004: Extract the element implementation logic to function mods in <webview>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@qui
Patch Set: sync @tott Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: extensions/renderer/resources/guest_view/web_view/web_view_action_requests.js
diff --git a/extensions/renderer/resources/guest_view/web_view/web_view_action_requests.js b/extensions/renderer/resources/guest_view/web_view/web_view_action_requests.js
index f5be50aecd571bd4fa838a9dc9c3a14656e5989b..9cf2c9a42b29ee77a5b8705e38e6eee5388892dc 100644
--- a/extensions/renderer/resources/guest_view/web_view/web_view_action_requests.js
+++ b/extensions/renderer/resources/guest_view/web_view/web_view_action_requests.js
@@ -163,7 +163,7 @@ NewWindow.prototype.getInterfaceObject = function() {
webViewImpl.onAttach(this.event.partition);
}
- var attached = webViewImpl.attachWindow(this.event.windowId);
+ var attached = webViewImpl.attachWindow$(this.event.windowId);
if (!attached) {
window.console.error(ERROR_MSG_NEWWINDOW_UNABLE_TO_ATTACH);
}

Powered by Google App Engine
This is Rietveld 408576698