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

Unified Diff: extensions/renderer/resources/guest_view/app_view/app_view.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: fix comments 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/app_view/app_view.js
diff --git a/extensions/renderer/resources/guest_view/app_view/app_view.js b/extensions/renderer/resources/guest_view/app_view/app_view.js
index 301c827d29b8036062f8324bc8ffaf76f21aa85b..a164fab186541e8de9e60f91eeef5ddb6eb5ad4c 100644
--- a/extensions/renderer/resources/guest_view/app_view/app_view.js
+++ b/extensions/renderer/resources/guest_view/app_view/app_view.js
@@ -70,7 +70,7 @@ AppViewImpl.prototype.connect = function(app, data, callback) {
}
return;
}
- this.attachWindow();
+ this.attachWindow$();
if (callback) {
callback(true);
}

Powered by Google App Engine
This is Rietveld 408576698