Index: ui/gfx/transform_util.cc |
diff --git a/ui/gfx/transform_util.cc b/ui/gfx/transform_util.cc |
index e5fc4840bd9901aedc452ddb3ef14a3d27d02ff9..cae1124630c935bc476cf7b7ed4c9c8a9e36097a 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; |
+Transform GetScaleTransform(const Point& anchor, float scale) { |
+ Transform transform; |
transform.ConcatScale(scale, scale); |
transform.ConcatTranslate(anchor.x() * (1 - scale), |
anchor.y() * (1 - scale)); |