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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp

Issue 2883033003: Propagate inert state to OOPIFs when a modal dialog is active (Closed)
Patch Set: Set Frame's inert bit on style calculation Created 3 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: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
index 5b818322d6aa53be076d63e72af83adb14e6998e..cd56195ffade9f02f2083bf1a34648a07f9521fe 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
@@ -772,6 +772,11 @@ void WebFrameWidgetImpl::SetRemoteViewportIntersection(
}
}
+void WebFrameWidgetImpl::SetIsInert(bool inert) {
+ DCHECK(local_root_->Parent() && local_root_->Parent()->IsWebRemoteFrame());
tkent 2017/06/08 23:53:49 nit: Split the DCHECK into two so that we can know
kenrb 2017/06/09 19:26:30 Done.
+ local_root_->GetFrame()->SetIsInert(inert);
+}
+
void WebFrameWidgetImpl::HandleMouseLeave(LocalFrame& main_frame,
const WebMouseEvent& event) {
// FIXME: WebWidget doesn't have the method below.

Powered by Google App Engine
This is Rietveld 408576698