OLD | NEW |
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 1600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1611 inline void invalidateContainerPreferredLogicalWidths(); | 1611 inline void invalidateContainerPreferredLogicalWidths(); |
1612 | 1612 |
1613 void invalidatePaintIncludingNonSelfPaintingLayerDescendantsInternal(const L
ayoutBoxModelObject& paintInvalidationContainer); | 1613 void invalidatePaintIncludingNonSelfPaintingLayerDescendantsInternal(const L
ayoutBoxModelObject& paintInvalidationContainer); |
1614 | 1614 |
1615 // The caller should ensure the enclosing layer has been setNeedsRepaint bef
ore calling this function. | 1615 // The caller should ensure the enclosing layer has been setNeedsRepaint bef
ore calling this function. |
1616 void invalidatePaintOfPreviousPaintInvalidationRect(const LayoutBoxModelObje
ct& paintInvalidationContainer, PaintInvalidationReason); | 1616 void invalidatePaintOfPreviousPaintInvalidationRect(const LayoutBoxModelObje
ct& paintInvalidationContainer, PaintInvalidationReason); |
1617 | 1617 |
1618 LayoutRect previousSelectionRectForPaintInvalidation() const; | 1618 LayoutRect previousSelectionRectForPaintInvalidation() const; |
1619 void setPreviousSelectionRectForPaintInvalidation(const LayoutRect&); | 1619 void setPreviousSelectionRectForPaintInvalidation(const LayoutRect&); |
1620 | 1620 |
1621 LayoutObject* containerForAbsolutePosition(const LayoutBoxModelObject* paint
InvalidationContainer = nullptr, bool* paintInvalidationContainerSkipped = nullp
tr) const; | 1621 LayoutObject* containerForAbsolutePosition(const LayoutBoxModelObject* ances
tor = nullptr, bool* ancestorSkipped = nullptr) const; |
1622 | 1622 |
1623 const LayoutBoxModelObject* enclosingCompositedContainer() const; | 1623 const LayoutBoxModelObject* enclosingCompositedContainer() const; |
1624 | 1624 |
1625 LayoutFlowThread* locateFlowThreadContainingBlock() const; | 1625 LayoutFlowThread* locateFlowThreadContainingBlock() const; |
1626 void removeFromLayoutFlowThreadRecursive(LayoutFlowThread*); | 1626 void removeFromLayoutFlowThreadRecursive(LayoutFlowThread*); |
1627 | 1627 |
1628 ComputedStyle* cachedFirstLineStyle() const; | 1628 ComputedStyle* cachedFirstLineStyle() const; |
1629 StyleDifference adjustStyleDifference(StyleDifference) const; | 1629 StyleDifference adjustStyleDifference(StyleDifference) const; |
1630 | 1630 |
1631 Color selectionColor(int colorProperty, const GlobalPaintFlags) const; | 1631 Color selectionColor(int colorProperty, const GlobalPaintFlags) const; |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2164 void showTree(const blink::LayoutObject*); | 2164 void showTree(const blink::LayoutObject*); |
2165 void showLineTree(const blink::LayoutObject*); | 2165 void showLineTree(const blink::LayoutObject*); |
2166 void showLayoutTree(const blink::LayoutObject* object1); | 2166 void showLayoutTree(const blink::LayoutObject* object1); |
2167 // We don't make object2 an optional parameter so that showLayoutTree | 2167 // We don't make object2 an optional parameter so that showLayoutTree |
2168 // can be called from gdb easily. | 2168 // can be called from gdb easily. |
2169 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); | 2169 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); |
2170 | 2170 |
2171 #endif | 2171 #endif |
2172 | 2172 |
2173 #endif // LayoutObject_h | 2173 #endif // LayoutObject_h |
OLD | NEW |