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

Unified Diff: content/public/browser/browser_plugin_guest_delegate.cc

Issue 2417693002: Allow MimeHandlerViewGuest be embedded inside OOPIFs (Closed)
Patch Set: Fixed an input routing issue with nested browser plugings Created 4 years, 1 month 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: content/public/browser/browser_plugin_guest_delegate.cc
diff --git a/content/public/browser/browser_plugin_guest_delegate.cc b/content/public/browser/browser_plugin_guest_delegate.cc
index 732df238f91431509e6f998d56cc1508e9a0bdf3..c4224843779bbc24f5914a4c245b6fe2c6f8ad4e 100644
--- a/content/public/browser/browser_plugin_guest_delegate.cc
+++ b/content/public/browser/browser_plugin_guest_delegate.cc
@@ -36,4 +36,12 @@ bool BrowserPluginGuestDelegate::CanUseCrossProcessFrames() {
return true;
}
+RenderFrameHost* BrowserPluginGuestDelegate::GetOwnerFrame() {
+ return nullptr;
+}
+
+bool BrowserPluginGuestDelegate::CanBeEmbeddedInsideCrossProcessFrames() {
+ return false;
+}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698