| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
| 4 * | 4 * |
| 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 6 * | 6 * |
| 7 * Other contributors: | 7 * Other contributors: |
| 8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
| 10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 CompositingReasons compositingReasons() const { ASSERT(isAllowedToQueryCompo
sitingState()); return m_compositingReasons; } | 484 CompositingReasons compositingReasons() const { ASSERT(isAllowedToQueryCompo
sitingState()); return m_compositingReasons; } |
| 485 void setCompositingReasons(CompositingReasons, CompositingReasons mask = Com
positingReasonAll); | 485 void setCompositingReasons(CompositingReasons, CompositingReasons mask = Com
positingReasonAll); |
| 486 | 486 |
| 487 bool hasCompositingDescendant() const { ASSERT(isAllowedToQueryCompositingSt
ate()); return m_hasCompositingDescendant; } | 487 bool hasCompositingDescendant() const { ASSERT(isAllowedToQueryCompositingSt
ate()); return m_hasCompositingDescendant; } |
| 488 void setHasCompositingDescendant(bool); | 488 void setHasCompositingDescendant(bool); |
| 489 | 489 |
| 490 bool shouldIsolateCompositedDescendants() const { ASSERT(isAllowedToQueryCom
positingState()); return m_shouldIsolateCompositedDescendants; } | 490 bool shouldIsolateCompositedDescendants() const { ASSERT(isAllowedToQueryCom
positingState()); return m_shouldIsolateCompositedDescendants; } |
| 491 void setShouldIsolateCompositedDescendants(bool); | 491 void setShouldIsolateCompositedDescendants(bool); |
| 492 | 492 |
| 493 void updateDescendantDependentFlags(); | 493 void updateDescendantDependentFlags(); |
| 494 void updateDescendantDependentFlagsForEntireSubtree(); | |
| 495 | 494 |
| 496 void updateOrRemoveFilterEffectBuilder(); | 495 void updateOrRemoveFilterEffectBuilder(); |
| 497 | 496 |
| 498 void updateSelfPaintingLayer(); | 497 void updateSelfPaintingLayer(); |
| 499 | 498 |
| 500 DeprecatedPaintLayer* enclosingTransformedAncestor() const; | 499 DeprecatedPaintLayer* enclosingTransformedAncestor() const; |
| 501 LayoutPoint computeOffsetFromTransformedAncestor() const; | 500 LayoutPoint computeOffsetFromTransformedAncestor() const; |
| 502 | 501 |
| 503 void didUpdateNeedsCompositedScrolling(); | 502 void didUpdateNeedsCompositedScrolling(); |
| 504 | 503 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 | 722 |
| 724 } // namespace blink | 723 } // namespace blink |
| 725 | 724 |
| 726 #ifndef NDEBUG | 725 #ifndef NDEBUG |
| 727 // Outside the WebCore namespace for ease of invocation from gdb. | 726 // Outside the WebCore namespace for ease of invocation from gdb. |
| 728 void showLayerTree(const blink::DeprecatedPaintLayer*); | 727 void showLayerTree(const blink::DeprecatedPaintLayer*); |
| 729 void showLayerTree(const blink::LayoutObject*); | 728 void showLayerTree(const blink::LayoutObject*); |
| 730 #endif | 729 #endif |
| 731 | 730 |
| 732 #endif // Layer_h | 731 #endif // Layer_h |
| OLD | NEW |