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

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

Issue 1991273003: Fire visibilityChange event on out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 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
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewFrameWidget.cpp
diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
index e75d9c8006404980732ff1ec4d0ca3b24b922884..25d9bc7f7154a3d430365911b27eff50f54fa905 100644
--- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
+++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
@@ -13,6 +13,7 @@ WebViewFrameWidget::WebViewFrameWidget(WebWidgetClient* client, WebViewImpl& web
: m_client(client), m_webView(&webView), m_mainFrame(&mainFrame)
{
m_mainFrame->setFrameWidget(this);
+ m_webView->setCompositorVisibility(true);
}
WebViewFrameWidget::~WebViewFrameWidget()
@@ -25,6 +26,7 @@ void WebViewFrameWidget::close()
// a frame swap, the swapped frame is detached *after* the frame tree is
// updated. If the main frame is being swapped, then
// m_webView()->mainFrameImpl() will no longer point to the original frame.
+ m_webView->setCompositorVisibility(false);
m_mainFrame->setFrameWidget(nullptr);
m_mainFrame = nullptr;
m_webView = nullptr;
@@ -235,9 +237,9 @@ void WebViewFrameWidget::updateTopControlsState(WebTopControlsState constraints,
return m_webView->updateTopControlsState(constraints, current, animate);
}
-void WebViewFrameWidget::setVisibilityState(WebPageVisibilityState visibilityState, bool isInitialState)
+void WebViewFrameWidget::setVisibilityState(WebPageVisibilityState visibilityState)
{
- return m_webView->setVisibilityState(visibilityState, isInitialState);
+ return m_webView->setVisibilityState(visibilityState, false);
}
void WebViewFrameWidget::setIsTransparent(bool isTransparent)
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698