| Index: third_party/WebKit/Source/platform/geometry/IntPoint.h
|
| diff --git a/third_party/WebKit/Source/platform/geometry/IntPoint.h b/third_party/WebKit/Source/platform/geometry/IntPoint.h
|
| index ebee74187e6129f52567479d9cb071971bee816f..4c538bdcf3c16f46029bbb33dc06b20bd58a3882 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/IntPoint.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/IntPoint.h
|
| @@ -68,8 +68,8 @@ class PLATFORM_EXPORT IntPoint {
|
| m_y += dy;
|
| }
|
| void saturatedMove(int dx, int dy) {
|
| - m_x = saturatedAddition(m_x, dx);
|
| - m_y = saturatedAddition(m_y, dy);
|
| + m_x = SaturatedAddition(m_x, dx);
|
| + m_y = SaturatedAddition(m_y, dy);
|
| }
|
|
|
| void scale(float sx, float sy) {
|
|
|