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

Unified Diff: third_party/WebKit/Source/core/frame/FrameOwner.h

Issue 2564633002: Don't create layout objects for children of display-none iframes. (Closed)
Patch Set: . Created 4 years 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/FrameOwner.h
diff --git a/third_party/WebKit/Source/core/frame/FrameOwner.h b/third_party/WebKit/Source/core/frame/FrameOwner.h
index d1d529286bb3475f545f0ac60f6b39bebf9b7613..fbaa404d0eb00485170e370f005f3c5e7f7b052f 100644
--- a/third_party/WebKit/Source/core/frame/FrameOwner.h
+++ b/third_party/WebKit/Source/core/frame/FrameOwner.h
@@ -42,6 +42,7 @@ class CORE_EXPORT FrameOwner : public GarbageCollectedMixin {
virtual int marginWidth() const = 0;
virtual int marginHeight() const = 0;
virtual bool allowFullscreen() const = 0;
+ virtual bool isDisplayNone() const = 0;
virtual AtomicString csp() const = 0;
virtual const WebVector<WebPermissionType>& delegatedPermissions() const = 0;
};
@@ -67,6 +68,7 @@ class CORE_EXPORT DummyFrameOwner
int marginWidth() const override { return -1; }
int marginHeight() const override { return -1; }
bool allowFullscreen() const override { return false; }
+ bool isDisplayNone() const override { return false; }
AtomicString csp() const override { return nullAtom; }
const WebVector<WebPermissionType>& delegatedPermissions() const override {
DEFINE_STATIC_LOCAL(WebVector<WebPermissionType>, permissions, ());

Powered by Google App Engine
This is Rietveld 408576698