| Index: third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp b/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| index ba9589cdfd7eaa99fd3d6302070de917aa725d63..d3421c4ce84f3ca841711837049bc0dbc4c663fd 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/LayoutRect.cpp
|
| @@ -152,13 +152,6 @@ LayoutRect unionRectEvenIfEmpty(const Vector<LayoutRect>& rects) {
|
| return result;
|
| }
|
|
|
| -IntRect enclosingIntRect(const LayoutRect& rect) {
|
| - IntPoint location = flooredIntPoint(rect.minXMinYCorner());
|
| - IntPoint maxPoint = ceiledIntPoint(rect.maxXMaxYCorner());
|
| -
|
| - return IntRect(location, maxPoint - location);
|
| -}
|
| -
|
| LayoutRect enclosingLayoutRect(const FloatRect& rect) {
|
| LayoutPoint location = flooredLayoutPoint(rect.minXMinYCorner());
|
| LayoutPoint maxPoint = ceiledLayoutPoint(rect.maxXMaxYCorner());
|
|
|