| 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 * | 3 * |
| 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 5 * | 5 * |
| 6 * Other contributors: | 6 * Other contributors: |
| 7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
| 9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
| 10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
| (...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 | 787 |
| 788 void updateFilters(const RenderStyle* oldStyle, const RenderStyle* newStyle)
; | 788 void updateFilters(const RenderStyle* oldStyle, const RenderStyle* newStyle)
; |
| 789 | 789 |
| 790 #if !ASSERT_DISABLED | 790 #if !ASSERT_DISABLED |
| 791 bool layerListMutationAllowed() const { return m_layerListMutationAllowed; } | 791 bool layerListMutationAllowed() const { return m_layerListMutationAllowed; } |
| 792 void setLayerListMutationAllowed(bool flag) { m_layerListMutationAllowed = f
lag; } | 792 void setLayerListMutationAllowed(bool flag) { m_layerListMutationAllowed = f
lag; } |
| 793 #endif | 793 #endif |
| 794 | 794 |
| 795 Node* enclosingElement() const; | 795 Node* enclosingElement() const; |
| 796 | 796 |
| 797 #if ENABLE(DIALOG_ELEMENT) | |
| 798 bool isInTopLayer() const; | 797 bool isInTopLayer() const; |
| 799 bool isInTopLayerSubtree() const; | 798 bool isInTopLayerSubtree() const; |
| 800 #endif | |
| 801 | 799 |
| 802 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | 800 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; |
| 803 | 801 |
| 804 enum ViewportConstrainedNotCompositedReason { | 802 enum ViewportConstrainedNotCompositedReason { |
| 805 NoNotCompositedReason, | 803 NoNotCompositedReason, |
| 806 NotCompositedForBoundsOutOfView, | 804 NotCompositedForBoundsOutOfView, |
| 807 NotCompositedForNonViewContainer, | 805 NotCompositedForNonViewContainer, |
| 808 NotCompositedForNoVisibleContent, | 806 NotCompositedForNoVisibleContent, |
| 809 }; | 807 }; |
| 810 | 808 |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1316 | 1314 |
| 1317 } // namespace WebCore | 1315 } // namespace WebCore |
| 1318 | 1316 |
| 1319 #ifndef NDEBUG | 1317 #ifndef NDEBUG |
| 1320 // Outside the WebCore namespace for ease of invocation from gdb. | 1318 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1321 void showLayerTree(const WebCore::RenderLayer*); | 1319 void showLayerTree(const WebCore::RenderLayer*); |
| 1322 void showLayerTree(const WebCore::RenderObject*); | 1320 void showLayerTree(const WebCore::RenderObject*); |
| 1323 #endif | 1321 #endif |
| 1324 | 1322 |
| 1325 #endif // RenderLayer_h | 1323 #endif // RenderLayer_h |
| OLD | NEW |