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

Unified Diff: components/guest_view/browser/guest_view_manager.cc

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: add basic postMessage test Created 5 years, 7 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: components/guest_view/browser/guest_view_manager.cc
diff --git a/components/guest_view/browser/guest_view_manager.cc b/components/guest_view/browser/guest_view_manager.cc
index 04cc220531bf8291e9ac0c789180fe93d7ac3d77..7d2089bb1984d914292843cae6349e095cb334b9 100644
--- a/components/guest_view/browser/guest_view_manager.cc
+++ b/components/guest_view/browser/guest_view_manager.cc
@@ -75,6 +75,11 @@ content::WebContents* GuestViewManager::GetGuestByInstanceIDSafely(
return GetGuestByInstanceID(guest_instance_id);
}
+content::WebContents* GuestViewManager::GetGuestByInstanceIDHack(
+ int guest_instance_id) {
+ return GetGuestByInstanceID(guest_instance_id);
+}
+
void GuestViewManager::AttachGuest(int embedder_process_id,
int element_instance_id,
int guest_instance_id,

Powered by Google App Engine
This is Rietveld 408576698