| Index: ui/gfx/rect.h
|
| diff --git a/ui/gfx/rect.h b/ui/gfx/rect.h
|
| index 0f0794875efd5788b08caee1a0dd51f2b0186d03..eee19abc1c3b8a473237d1913fe90cad53244ab9 100644
|
| --- a/ui/gfx/rect.h
|
| +++ b/ui/gfx/rect.h
|
| @@ -72,15 +72,6 @@ class UI_EXPORT Rect : public RectBase<Rect, Point, Size, Insets, int> {
|
| return RectF(origin().x(), origin().y(), size().width(), size().height());
|
| }
|
|
|
| - RectF Scale(float scale) const WARN_UNUSED_RESULT {
|
| - return Scale(scale, scale);
|
| - }
|
| -
|
| - RectF Scale(float x_scale, float y_scale) const WARN_UNUSED_RESULT {
|
| - RectF original = *this;
|
| - return original.Scale(x_scale, y_scale);
|
| - }
|
| -
|
| std::string ToString() const;
|
| };
|
|
|
|
|