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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.h

Issue 2575653002: [SPInvalidation] Invalidate all paint and properties for printing (Closed)
Patch Set: Add a passing test in TestExpectations 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 (C) 1998 Waldo Bastian (bastian@kde.org) 3 (C) 1998 Waldo Bastian (bastian@kde.org)
4 (C) 1998, 1999 Torben Weis (weis@kde.org) 4 (C) 1998, 1999 Torben Weis (weis@kde.org)
5 (C) 1999 Lars Knoll (knoll@kde.org) 5 (C) 1999 Lars Knoll (knoll@kde.org)
6 (C) 1999 Antti Koivisto (koivisto@kde.org) 6 (C) 1999 Antti Koivisto (koivisto@kde.org)
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
8 reserved. 8 reserved.
9 9
10 This library is free software; you can redistribute it and/or 10 This library is free software; you can redistribute it and/or
(...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 // tree as needing a paint property update. 741 // tree as needing a paint property update.
742 void setOnlyThisNeedsPaintPropertyUpdateForTesting() { 742 void setOnlyThisNeedsPaintPropertyUpdateForTesting() {
743 m_needsPaintPropertyUpdate = true; 743 m_needsPaintPropertyUpdate = true;
744 } 744 }
745 #endif 745 #endif
746 void clearNeedsPaintPropertyUpdate() { 746 void clearNeedsPaintPropertyUpdate() {
747 DCHECK_EQ(lifecycle().state(), DocumentLifecycle::InPrePaint); 747 DCHECK_EQ(lifecycle().state(), DocumentLifecycle::InPrePaint);
748 m_needsPaintPropertyUpdate = false; 748 m_needsPaintPropertyUpdate = false;
749 } 749 }
750 bool needsPaintPropertyUpdate() const { return m_needsPaintPropertyUpdate; } 750 bool needsPaintPropertyUpdate() const { return m_needsPaintPropertyUpdate; }
751
752 // Set when the whole frame subtree needs full paint invalidation and paint
753 // property update, e.g. when beginning or finishing printing.
754 void setShouldInvalidateAllPaintAndPaintProperties() {
755 m_shouldInvalidateAllPaintAndPaintProperties = true;
756 }
757 void clearShouldInvalidateAllPaintAndPaintProperties() {
758 m_shouldInvalidateAllPaintAndPaintProperties = true;
759 }
760 bool shouldInvalidateAllPaintAndPaintProperties() const {
761 return m_shouldInvalidateAllPaintAndPaintProperties;
762 }
763
751 // TODO(ojan): Merge this with IntersectionObserver once it lands. 764 // TODO(ojan): Merge this with IntersectionObserver once it lands.
752 IntRect computeVisibleArea(); 765 IntRect computeVisibleArea();
753 766
754 // Viewport size that should be used for viewport units (i.e. 'vh'/'vw'). 767 // Viewport size that should be used for viewport units (i.e. 'vh'/'vw').
755 FloatSize viewportSizeForViewportUnits() const; 768 FloatSize viewportSizeForViewportUnits() const;
756 769
757 ScrollAnchor* scrollAnchor() override { return &m_scrollAnchor; } 770 ScrollAnchor* scrollAnchor() override { return &m_scrollAnchor; }
758 void clearScrollAnchor(); 771 void clearScrollAnchor();
759 bool shouldPerformScrollAnchoring() const override; 772 bool shouldPerformScrollAnchoring() const override;
760 void enqueueScrollAnchoringAdjustment(ScrollableArea*); 773 void enqueueScrollAnchoringAdjustment(ScrollableArea*);
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 // TODO(trchen): This will not be needed once settings->rootLayerScrolls() is 1109 // TODO(trchen): This will not be needed once settings->rootLayerScrolls() is
1097 // enabled. 1110 // enabled.
1098 RefPtr<ClipPaintPropertyNode> m_contentClip; 1111 RefPtr<ClipPaintPropertyNode> m_contentClip;
1099 // The property tree state that should be used for painting contents. These 1112 // The property tree state that should be used for painting contents. These
1100 // properties are either created by this FrameView or are inherited from 1113 // properties are either created by this FrameView or are inherited from
1101 // an ancestor. 1114 // an ancestor.
1102 std::unique_ptr<PropertyTreeState> m_totalPropertyTreeStateForContents; 1115 std::unique_ptr<PropertyTreeState> m_totalPropertyTreeStateForContents;
1103 // Whether the paint properties need to be updated. For more details, see 1116 // Whether the paint properties need to be updated. For more details, see
1104 // FrameView::needsPaintPropertyUpdate(). 1117 // FrameView::needsPaintPropertyUpdate().
1105 bool m_needsPaintPropertyUpdate; 1118 bool m_needsPaintPropertyUpdate;
1119 bool m_shouldInvalidateAllPaintAndPaintProperties;
1106 1120
1107 // This is set on the local root frame view only. 1121 // This is set on the local root frame view only.
1108 DocumentLifecycle::LifecycleState m_currentUpdateLifecyclePhasesTargetState; 1122 DocumentLifecycle::LifecycleState m_currentUpdateLifecyclePhasesTargetState;
1109 1123
1110 ScrollAnchor m_scrollAnchor; 1124 ScrollAnchor m_scrollAnchor;
1111 using AnchoringAdjustmentQueue = 1125 using AnchoringAdjustmentQueue =
1112 HeapLinkedHashSet<WeakMember<ScrollableArea>>; 1126 HeapLinkedHashSet<WeakMember<ScrollableArea>>;
1113 AnchoringAdjustmentQueue m_anchoringAdjustmentQueue; 1127 AnchoringAdjustmentQueue m_anchoringAdjustmentQueue;
1114 1128
1115 // ScrollbarManager holds the Scrollbar instances. 1129 // ScrollbarManager holds the Scrollbar instances.
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 widget.isFrameView()); 1179 widget.isFrameView());
1166 DEFINE_TYPE_CASTS(FrameView, 1180 DEFINE_TYPE_CASTS(FrameView,
1167 ScrollableArea, 1181 ScrollableArea,
1168 scrollableArea, 1182 scrollableArea,
1169 scrollableArea->isFrameView(), 1183 scrollableArea->isFrameView(),
1170 scrollableArea.isFrameView()); 1184 scrollableArea.isFrameView());
1171 1185
1172 } // namespace blink 1186 } // namespace blink
1173 1187
1174 #endif // FrameView_h 1188 #endif // FrameView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698