| Index: ui/gfx/rect.h
|
| diff --git a/ui/gfx/rect.h b/ui/gfx/rect.h
|
| index 652c019ea6abdfa9351096efef9fd7225d61d701..64f35b1fe8adde6d9b0e0de6e01b1501ce7e71d3 100644
|
| --- a/ui/gfx/rect.h
|
| +++ b/ui/gfx/rect.h
|
| @@ -16,6 +16,7 @@
|
|
|
| #include "ui/gfx/point.h"
|
| #include "ui/gfx/rect_base.h"
|
| +#include "ui/gfx/rect_f.h"
|
| #include "ui/gfx/size.h"
|
|
|
| #if defined(OS_WIN)
|
| @@ -67,6 +68,18 @@ class UI_EXPORT Rect : public RectBase<Rect, Point, Size, Insets, int> {
|
| CGRect ToCGRect() const;
|
| #endif
|
|
|
| + RectF ToRectF() const WARN_UNUSED_RESULT {
|
| + 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 {
|
| + return ToRectF().Scale(x_scale, y_scale);
|
| + }
|
| +
|
| std::string ToString() const;
|
| };
|
|
|
|
|