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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 1817693002: Support edge-inclusive intersections in mapToVisibleRectInAncestorSpace (Closed) Base URL: https://chromium.googlesource.com/chromium/src@intersection-observer-idle-callback
Patch Set: Address comments, add mapToVisibleRectInContainerSpace test Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 void invalidatePaintIncludingNonCompositingDescendants(); 1139 void invalidatePaintIncludingNonCompositingDescendants();
1140 void invalidatePaintIncludingNonSelfPaintingLayerDescendants(const LayoutBox ModelObject& paintInvalidationContainer); 1140 void invalidatePaintIncludingNonSelfPaintingLayerDescendants(const LayoutBox ModelObject& paintInvalidationContainer);
1141 void setShouldDoFullPaintInvalidationIncludingNonCompositingDescendants(); 1141 void setShouldDoFullPaintInvalidationIncludingNonCompositingDescendants();
1142 1142
1143 // Returns the rect that should have paint invalidated whenever this object changes. The rect is in the view's 1143 // Returns the rect that should have paint invalidated whenever this object changes. The rect is in the view's
1144 // coordinate space. This method deals with outlines and overflow. 1144 // coordinate space. This method deals with outlines and overflow.
1145 virtual LayoutRect absoluteClippedOverflowRect() const; 1145 virtual LayoutRect absoluteClippedOverflowRect() const;
1146 virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutBoxMo delObject* paintInvalidationContainer, const PaintInvalidationState* = nullptr) const; 1146 virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutBoxMo delObject* paintInvalidationContainer, const PaintInvalidationState* = nullptr) const;
1147 1147
1148 // Given a rect in the object's coordinate space, compute a rect in the coor dinate space of |ancestor|. If 1148 // Given a rect in the object's coordinate space, compute a rect in the coor dinate space of |ancestor|. If
1149 // intermediate containers have clipping or scrolling of any kind, it is app lied; but overflow clipping is *not* 1149 // intermediate containers have clipping or scrolling of any kind, it is app lied; but overflow clipping is
1150 // applied for |ancestor| itself. The output rect is suitable for purposes s uch as paint invalidation. 1150 // *not* applied for |ancestor| itself. The output rect is suitable for purp oses such as paint invalidation.
1151 virtual void mapToVisibleRectInAncestorSpace(const LayoutBoxModelObject* anc estor, LayoutRect&, const PaintInvalidationState*) const; 1151 //
1152 // If visibleRectFlags is EdgeInclusive, clipping operations will use Layout Rect::inclusiveIntersect,
chrishtr 2016/03/22 19:54:26 s/is/has/
szager1 2016/03/23 23:26:59 Done.
1153 // and the return value of inclusiveIntersect will be propagated to the retu rn value of this method.
1154 // Otherwise, clipping operations will use LayoutRect::intersect, and the re turn value will be true
1155 // only if the clipped rect has non-zero area. See the documentation for La youtRect::inclusiveIntersect
1156 // for more information.
1157 virtual bool mapToVisibleRectInAncestorSpace(const LayoutBoxModelObject* anc estor, LayoutRect&, const PaintInvalidationState*, VisibleRectFlags = DefaultVis ibleRectFlags) const;
1152 1158
1153 // Return the offset to the column in which the specified point (in flow-thr ead coordinates) 1159 // Return the offset to the column in which the specified point (in flow-thr ead coordinates)
1154 // lives. This is used to convert a flow-thread point to a visual point. 1160 // lives. This is used to convert a flow-thread point to a visual point.
1155 virtual LayoutSize columnOffset(const LayoutPoint&) const { return LayoutSiz e(); } 1161 virtual LayoutSize columnOffset(const LayoutPoint&) const { return LayoutSiz e(); }
1156 1162
1157 virtual unsigned length() const { return 1; } 1163 virtual unsigned length() const { return 1; }
1158 1164
1159 bool isFloatingOrOutOfFlowPositioned() const { return (isFloating() || isOut OfFlowPositioned()); } 1165 bool isFloatingOrOutOfFlowPositioned() const { return (isFloating() || isOut OfFlowPositioned()); }
1160 1166
1161 bool isTransparent() const { return style()->hasOpacity(); } 1167 bool isTransparent() const { return style()->hasOpacity(); }
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after
2168 void showTree(const blink::LayoutObject*); 2174 void showTree(const blink::LayoutObject*);
2169 void showLineTree(const blink::LayoutObject*); 2175 void showLineTree(const blink::LayoutObject*);
2170 void showLayoutTree(const blink::LayoutObject* object1); 2176 void showLayoutTree(const blink::LayoutObject* object1);
2171 // We don't make object2 an optional parameter so that showLayoutTree 2177 // We don't make object2 an optional parameter so that showLayoutTree
2172 // can be called from gdb easily. 2178 // can be called from gdb easily.
2173 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 2179 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
2174 2180
2175 #endif 2181 #endif
2176 2182
2177 #endif // LayoutObject_h 2183 #endif // LayoutObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698