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

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrameClientImpl.cpp

Issue 2883033003: Propagate inert state to OOPIFs when a modal dialog is active (Closed)
Patch Set: nit addressed 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/core/frame/RemoteFrameClientImpl.cpp
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrameClientImpl.cpp b/third_party/WebKit/Source/core/frame/RemoteFrameClientImpl.cpp
index e2ebce41f09b687821ce36fa88472c05f91038f7..0d0235dd07a9e3f1a9c554af60b6713d3a2d0d5a 100644
--- a/third_party/WebKit/Source/core/frame/RemoteFrameClientImpl.cpp
+++ b/third_party/WebKit/Source/core/frame/RemoteFrameClientImpl.cpp
@@ -162,4 +162,8 @@ void RemoteFrameClientImpl::VisibilityChanged(bool visible) {
web_frame_->Client()->VisibilityChanged(visible);
}
+void RemoteFrameClientImpl::SetIsInert(bool inert) {
+ web_frame_->Client()->SetIsInert(inert);
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698