summaryrefslogtreecommitdiffstats
path: root/ui/gfx/transform_util.h
diff options
context:
space:
mode:
authorshawnsingh@chromium.org <shawnsingh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-14 18:15:35 +0000
committershawnsingh@chromium.org <shawnsingh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-14 18:15:35 +0000
commit0f0453e90e6a85e469e138f048d2c1ae9a80e561 (patch)
treee60da12bc146144f88dea794b5e45c6785c7169e /ui/gfx/transform_util.h
parent4addcf3492db52c49f57d168d2bef07c46d411bd (diff)
downloadchromium_src-0f0453e90e6a85e469e138f048d2c1ae9a80e561.zip
chromium_src-0f0453e90e6a85e469e138f048d2c1ae9a80e561.tar.gz
chromium_src-0f0453e90e6a85e469e138f048d2c1ae9a80e561.tar.bz2
Migrate ui::Transform to gfx::Transform
It is more appropriate for Transform class to belong with its fellow geometry classes in the gfx namespace. Review URL: https://chromiumcodereview.appspot.com/11145005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161809 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/transform_util.h')
-rw-r--r--ui/gfx/transform_util.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/ui/gfx/transform_util.h b/ui/gfx/transform_util.h
index d80ad24..e898d70 100644
--- a/ui/gfx/transform_util.h
+++ b/ui/gfx/transform_util.h
@@ -9,14 +9,12 @@
#include "ui/gfx/transform.h"
namespace gfx {
-class Point;
-}
-namespace ui {
+class Point;
// Returns a scale transform at |anchor| point.
-UI_EXPORT Transform GetScaleTransform(const gfx::Point& anchor, float scale);
+UI_EXPORT Transform GetScaleTransform(const Point& anchor, float scale);
-} // namespace ui
+} // namespace gfx
#endif // UI_GFX_TRANSFORM_UTIL_H_