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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 2202493002: NOT FOR REVIEW: Fullscreen WIP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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/layout/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index f6fa8c92e4b25fa5ab674e6b70f6515d0abde492..10ef58692767ab300a4bec65d2a26c35067cd8ca 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -518,12 +518,6 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
bool isProgress() const { return isOfType(LayoutObjectProgress); }
bool isQuote() const { return isOfType(LayoutObjectQuote); }
bool isLayoutButton() const { return isOfType(LayoutObjectLayoutButton); }
- bool isLayoutFullScreen() const {
- return isOfType(LayoutObjectLayoutFullScreen);
- }
- bool isLayoutFullScreenPlaceholder() const {
- return isOfType(LayoutObjectLayoutFullScreenPlaceholder);
- }
bool isLayoutGrid() const { return isOfType(LayoutObjectLayoutGrid); }
bool isLayoutIFrame() const { return isOfType(LayoutObjectLayoutIFrame); }
bool isLayoutImage() const { return isOfType(LayoutObjectLayoutImage); }
@@ -722,8 +716,7 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
style()->display() == EDisplay::Box) &&
style()->styleType() == PseudoIdNone && isLayoutBlock() &&
!isListMarker() && !isLayoutFlowThread() &&
- !isLayoutMultiColumnSet() && !isLayoutFullScreen() &&
- !isLayoutFullScreenPlaceholder();
+ !isLayoutMultiColumnSet();
}
bool isElementContinuation() const {
return node() && node()->layoutObject() != this;
@@ -1798,8 +1791,6 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
LayoutObjectQuote,
LayoutObjectLayoutButton,
LayoutObjectLayoutFlowThread,
- LayoutObjectLayoutFullScreen,
- LayoutObjectLayoutFullScreenPlaceholder,
LayoutObjectLayoutGrid,
LayoutObjectLayoutIFrame,
LayoutObjectLayoutImage,
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutMenuList.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutVideo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698