| Index: ui/gfx/transform_util.cc
|
| diff --git a/ui/gfx/transform_util.cc b/ui/gfx/transform_util.cc
|
| index e5fc4840bd9901aedc452ddb3ef14a3d27d02ff9..17dd7ddbb388a6761c9f3b6e9655e7373ac2eb8d 100644
|
| --- a/ui/gfx/transform_util.cc
|
| +++ b/ui/gfx/transform_util.cc
|
| @@ -6,10 +6,10 @@
|
|
|
| #include "ui/gfx/point.h"
|
|
|
| -namespace ui {
|
| +namespace gfx {
|
|
|
| Transform GetScaleTransform(const gfx::Point& anchor, float scale) {
|
| - ui::Transform transform;
|
| + gfx::Transform transform;
|
| transform.ConcatScale(scale, scale);
|
| transform.ConcatTranslate(anchor.x() * (1 - scale),
|
| anchor.y() * (1 - scale));
|
|
|