| 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 RenderLayer* hitTestChildren(ChildrenIteration, RenderLayer* rootLayer, cons
t HitTestRequest&, HitTestResult&, | 281 RenderLayer* hitTestChildren(ChildrenIteration, RenderLayer* rootLayer, cons
t HitTestRequest&, HitTestResult&, |
| 282 const LayoutRect& hitTestRect, const HitTestLocatio
n&, | 282 const LayoutRect& hitTestRect, const HitTestLocatio
n&, |
| 283 const HitTestingTransformState* transformState, dou
ble* zOffsetForDescendants, double* zOffset, | 283 const HitTestingTransformState* transformState, dou
ble* zOffsetForDescendants, double* zOffset, |
| 284 const HitTestingTransformState* unflattenedTransfor
mState, bool depthSortDescendants); | 284 const HitTestingTransformState* unflattenedTransfor
mState, bool depthSortDescendants); |
| 285 | 285 |
| 286 PassRefPtr<HitTestingTransformState> createLocalTransformState(RenderLayer*
rootLayer, RenderLayer* containerLayer, | 286 PassRefPtr<HitTestingTransformState> createLocalTransformState(RenderLayer*
rootLayer, RenderLayer* containerLayer, |
| 287 const LayoutRect& hitTestRect, const HitTestLocation
&, | 287 const LayoutRect& hitTestRect, const HitTestLocation
&, |
| 288 const HitTestingTransformState* containerTransformSt
ate, | 288 const HitTestingTransformState* containerTransformSt
ate, |
| 289 const LayoutPoint& translationOffset = LayoutPoint()
) const; | 289 const LayoutPoint& translationOffset = LayoutPoint()
) const; |
| 290 | 290 |
| 291 bool hitTestContents(const HitTestRequest&, HitTestResult&, const LayoutRect
& layerBounds, const HitTestLocation&, HitTestFilter) const; | 291 bool hitTestContents(const HitTestRequest&, HitTestResult&, const LayoutRect
& layerBounds, const HitTestLocation&) const; |
| 292 | 292 |
| 293 bool shouldBeSelfPaintingLayer() const; | 293 bool shouldBeSelfPaintingLayer() const; |
| 294 | 294 |
| 295 // FIXME: We should only create the stacking node if needed. | 295 // FIXME: We should only create the stacking node if needed. |
| 296 bool requiresStackingNode() const { return true; } | 296 bool requiresStackingNode() const { return true; } |
| 297 void updateStackingNode(); | 297 void updateStackingNode(); |
| 298 | 298 |
| 299 void updateTransform(const RenderStyle* oldStyle, RenderStyle* newStyle); | 299 void updateTransform(const RenderStyle* oldStyle, RenderStyle* newStyle); |
| 300 | 300 |
| 301 void dirty3DTransformedDescendantStatus(); | 301 void dirty3DTransformedDescendantStatus(); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 | 353 |
| 354 } // namespace blink | 354 } // namespace blink |
| 355 | 355 |
| 356 #ifndef NDEBUG | 356 #ifndef NDEBUG |
| 357 // Outside the WebCore namespace for ease of invocation from gdb. | 357 // Outside the WebCore namespace for ease of invocation from gdb. |
| 358 void showLayerTree(const blink::RenderLayer*); | 358 void showLayerTree(const blink::RenderLayer*); |
| 359 void showLayerTree(const blink::RenderObject*); | 359 void showLayerTree(const blink::RenderObject*); |
| 360 #endif | 360 #endif |
| 361 | 361 |
| 362 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYER_H_ | 362 #endif // SKY_ENGINE_CORE_RENDERING_RENDERLAYER_H_ |
| OLD | NEW |