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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.h

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.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewImpl.h
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
index 70905512f151dc17ad4376ec6ec27677327c4487..2c3e9a0aae1cef9784986fde5cf36ff1727e135d 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.h
+++ b/third_party/WebKit/Source/web/WebViewImpl.h
@@ -100,7 +100,7 @@ class WEB_EXPORT WebViewImpl final : WTF_NON_EXPORTED_BASE(public WebView)
, WTF_NON_EXPORTED_BASE(public WebGestureCurveTarget)
, public PageWidgetEventHandler {
public:
- static WebViewImpl* create(WebViewClient*);
+ static WebViewImpl* create(WebViewClient*, WebPageVisibilityState);
static HashSet<WebViewImpl*>& allInstances();
// WebWidget methods:
@@ -539,7 +539,12 @@ private:
void performResize();
void resizeViewWhileAnchored(FrameView*, float topControlsHeight, bool topControlsShrinkLayout);
+ // Overrides the compositor visibility. See the description of
+ // m_overrideCompositorVisibility for more details.
+ void setCompositorVisibility(bool);
+
friend class WebView; // So WebView::Create can call our constructor
+ friend class WebViewFrameWidget;
friend class WTF::RefCounted<WebViewImpl>;
friend void setCurrentInputEventForTest(const WebInputEvent*);
@@ -548,7 +553,7 @@ private:
DragOver
};
- explicit WebViewImpl(WebViewClient*);
+ explicit WebViewImpl(WebViewClient*, WebPageVisibilityState);
~WebViewImpl() override;
int textInputFlags();
@@ -757,6 +762,12 @@ private:
PaintArtifactCompositor m_paintArtifactCompositor;
double m_lastFrameTimeMonotonic;
+
+ // TODO(lfg): This is used in order to disable compositor visibility while
+ // the page is still visible. This is needed until the WebView and WebWidget
+ // split is complete, since in out-of-process iframes the page can be
+ // visible, but the WebView should not be used as a widget.
+ bool m_overrideCompositorVisibility;
};
// We have no ways to check if the specified WebView is an instance of
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698