| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 | 380 |
| 381 void updateOrRemoveFilterEffectRenderer(); | 381 void updateOrRemoveFilterEffectRenderer(); |
| 382 | 382 |
| 383 void updateSelfPaintingLayer(); | 383 void updateSelfPaintingLayer(); |
| 384 | 384 |
| 385 RenderLayer* enclosingTransformedAncestor() const; | 385 RenderLayer* enclosingTransformedAncestor() const; |
| 386 LayoutPoint computeOffsetFromTransformedAncestor() const; | 386 LayoutPoint computeOffsetFromTransformedAncestor() const; |
| 387 | 387 |
| 388 void didUpdateNeedsCompositedScrolling(); | 388 void didUpdateNeedsCompositedScrolling(); |
| 389 | 389 |
| 390 void setShouldDoFullPaintInvalidationIncludingNonCompositingDescendants(); | |
| 391 | |
| 392 private: | 390 private: |
| 393 // TODO(ojan): Get rid of this. These are basically layer-tree-only paint ph
ases. | 391 // TODO(ojan): Get rid of this. These are basically layer-tree-only paint ph
ases. |
| 394 enum PaintLayerFlags { | 392 enum PaintLayerFlags { |
| 395 PaintContent, | 393 PaintContent, |
| 396 PaintOverlayScrollbars, | 394 PaintOverlayScrollbars, |
| 397 }; | 395 }; |
| 398 | 396 |
| 399 // Bounding box in the coordinates of this layer. | 397 // Bounding box in the coordinates of this layer. |
| 400 LayoutRect logicalBoundingBox() const; | 398 LayoutRect logicalBoundingBox() const; |
| 401 | 399 |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 | 554 |
| 557 } // namespace blink | 555 } // namespace blink |
| 558 | 556 |
| 559 #ifndef NDEBUG | 557 #ifndef NDEBUG |
| 560 // Outside the WebCore namespace for ease of invocation from gdb. | 558 // Outside the WebCore namespace for ease of invocation from gdb. |
| 561 void showLayerTree(const blink::RenderLayer*); | 559 void showLayerTree(const blink::RenderLayer*); |
| 562 void showLayerTree(const blink::RenderObject*); | 560 void showLayerTree(const blink::RenderObject*); |
| 563 #endif | 561 #endif |
| 564 | 562 |
| 565 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYER_H_ | 563 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYER_H_ |
| OLD | NEW |