Chromium Code Reviews| Index: Source/core/paint/DeprecatedPaintLayerStackingNode.h |
| diff --git a/Source/core/paint/DeprecatedPaintLayerStackingNode.h b/Source/core/paint/DeprecatedPaintLayerStackingNode.h |
| index 4fd6b7c55c2d562b3b7cb43cebb12a9a69502fc5..409afafd9b9412ba7e0fe9c29457ae73dab8b579 100644 |
| --- a/Source/core/paint/DeprecatedPaintLayerStackingNode.h |
| +++ b/Source/core/paint/DeprecatedPaintLayerStackingNode.h |
| @@ -97,6 +97,11 @@ public: |
| void setLayerListMutationAllowed(bool flag) { m_layerListMutationAllowed = flag; } |
| #endif |
| + // The hitTest() method looks for mouse events by walking layers that intersect the point from front to back. |
| + bool hitTest(HitTestResult&); |
| + bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&); |
| + |
| + |
|
dsinclair
2015/06/04 18:21:22
nit: remove blank line.
chadarmstrong
2015/06/04 18:43:38
Done.
|
| private: |
| friend class DeprecatedPaintLayerStackingNodeIterator; |
| friend class DeprecatedPaintLayerStackingNodeReverseIterator; |