| Index: third_party/WebKit/Source/platform/geometry/LayoutPoint.h
|
| diff --git a/third_party/WebKit/Source/platform/geometry/LayoutPoint.h b/third_party/WebKit/Source/platform/geometry/LayoutPoint.h
|
| index b1fcf37d4639c1ab9757850e820751be66f446a4..b61956b3e0c902dbb383f3f465e363cb72f0b1bf 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/LayoutPoint.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/LayoutPoint.h
|
| @@ -61,6 +61,7 @@ public:
|
| void move(const LayoutSize& s) { move(s.width(), s.height()); }
|
| void move(const IntSize& s) { move(s.width(), s.height()); }
|
| void moveBy(const LayoutPoint& offset) { move(offset.x(), offset.y()); }
|
| + void move(int dx, int dy) { move(LayoutUnit(dx), LayoutUnit(dy)); }
|
| void move(LayoutUnit dx, LayoutUnit dy) { m_x += dx; m_y += dy; }
|
| void scale(float sx, float sy)
|
| {
|
|
|