| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 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 2581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2592 updateDescendantDependentFlags(); | 2592 updateDescendantDependentFlags(); |
| 2593 | 2593 |
| 2594 updateTransform(oldStyle, layoutObject()->styleRef()); | 2594 updateTransform(oldStyle, layoutObject()->styleRef()); |
| 2595 updateFilters(oldStyle, layoutObject()->styleRef()); | 2595 updateFilters(oldStyle, layoutObject()->styleRef()); |
| 2596 | 2596 |
| 2597 setNeedsCompositingInputsUpdate(); | 2597 setNeedsCompositingInputsUpdate(); |
| 2598 } | 2598 } |
| 2599 | 2599 |
| 2600 bool PaintLayer::scrollsOverflow() const | 2600 bool PaintLayer::scrollsOverflow() const |
| 2601 { | 2601 { |
| 2602 if (PaintLayerScrollableArea* scrollableArea = this->scrollableArea()) | 2602 if (PaintLayerScrollableArea* scrollableArea = this->getScrollableArea()) |
| 2603 return scrollableArea->scrollsOverflow(); | 2603 return scrollableArea->scrollsOverflow(); |
| 2604 | 2604 |
| 2605 return false; | 2605 return false; |
| 2606 } | 2606 } |
| 2607 | 2607 |
| 2608 namespace { | 2608 namespace { |
| 2609 | 2609 |
| 2610 FilterOperations computeFilterOperationsHandleReferenceFilters(const FilterOpera
tions& filters, float effectiveZoom, Node* enclosingNode) | 2610 FilterOperations computeFilterOperationsHandleReferenceFilters(const FilterOpera
tions& filters, float effectiveZoom, Node* enclosingNode) |
| 2611 { | 2611 { |
| 2612 if (filters.hasReferenceFilter()) { | 2612 if (filters.hasReferenceFilter()) { |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2836 | 2836 |
| 2837 void showLayerTree(const blink::LayoutObject* layoutObject) | 2837 void showLayerTree(const blink::LayoutObject* layoutObject) |
| 2838 { | 2838 { |
| 2839 if (!layoutObject) { | 2839 if (!layoutObject) { |
| 2840 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); | 2840 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); |
| 2841 return; | 2841 return; |
| 2842 } | 2842 } |
| 2843 showLayerTree(layoutObject->enclosingLayer()); | 2843 showLayerTree(layoutObject->enclosingLayer()); |
| 2844 } | 2844 } |
| 2845 #endif | 2845 #endif |
| OLD | NEW |