Index: third_party/WebKit/Source/core/layout/HitTestLocation.h |
diff --git a/third_party/WebKit/Source/core/layout/HitTestLocation.h b/third_party/WebKit/Source/core/layout/HitTestLocation.h |
index a89241b79eecfdba0fcdb0339af89061368da07a..6fef9bd636127364585ee13fa2c743b62bcce7ed 100644 |
--- a/third_party/WebKit/Source/core/layout/HitTestLocation.h |
+++ b/third_party/WebKit/Source/core/layout/HitTestLocation.h |
@@ -62,10 +62,6 @@ public: |
IntRect boundingBox() const { return m_boundingBox; } |
static IntRect rectForPoint(const LayoutPoint&, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding); |
- int topPadding() const { return roundedPoint().y() - m_boundingBox.y(); } |
- int rightPadding() const { return m_boundingBox.maxX() - roundedPoint().x() - 1; } |
- int bottomPadding() const { return m_boundingBox.maxY() - roundedPoint().y() - 1; } |
- int leftPadding() const { return roundedPoint().x() - m_boundingBox.x(); } |
bool intersects(const LayoutRect&) const; |
bool intersects(const FloatRect&) const; |