| Index: Source/core/rendering/HitTestLocation.cpp
|
| diff --git a/Source/core/rendering/HitTestLocation.cpp b/Source/core/rendering/HitTestLocation.cpp
|
| index c8df8a4514df7d05d82f1a88fb30088b94631175..0986eff3e4d81ecfc8ab6c61b742c90bdd7a7a73 100644
|
| --- a/Source/core/rendering/HitTestLocation.cpp
|
| +++ b/Source/core/rendering/HitTestLocation.cpp
|
| @@ -22,6 +22,8 @@
|
| #include "config.h"
|
| #include "core/rendering/HitTestLocation.h"
|
|
|
| +#include "platform/geometry/FloatRoundedRect.h"
|
| +
|
| namespace blink {
|
|
|
| HitTestLocation::HitTestLocation()
|
| @@ -147,7 +149,7 @@ bool HitTestLocation::intersects(const FloatRect& rect) const
|
| return intersectsRect(rect);
|
| }
|
|
|
| -bool HitTestLocation::intersects(const RoundedRect& rect) const
|
| +bool HitTestLocation::intersects(const FloatRoundedRect& rect) const
|
| {
|
| return rect.intersectsQuad(m_transformedRect);
|
| }
|
|
|