| Index: third_party/WebKit/Source/platform/geometry/IntRect.h
|
| diff --git a/third_party/WebKit/Source/platform/geometry/IntRect.h b/third_party/WebKit/Source/platform/geometry/IntRect.h
|
| index a8e5c2d2bd87fd7a4c4c00b2cfdef86fe601f848..f24f86df47959b8782ab77872fef59de9709985b 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/IntRect.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/IntRect.h
|
| @@ -92,6 +92,7 @@ public:
|
| void move(const IntSize& size) { m_location += size; }
|
| void moveBy(const IntPoint& offset) { m_location.move(offset.x(), offset.y()); }
|
| void move(int dx, int dy) { m_location.move(dx, dy); }
|
| + void saturatedMove(int dx, int dy) { m_location.saturatedMove(dx, dy); }
|
|
|
| void expand(const IntSize& size) { m_size += size; }
|
| void expand(int dw, int dh) { m_size.expand(dw, dh); }
|
|
|