diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 17:20:57 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 17:20:57 +0000 |
commit | f08b1a22c7f4e7383d7ffdd9db99776234e38fe7 (patch) | |
tree | 6091acd6aacd95914f56c132072d411f13019492 /ui | |
parent | a3e5f71769df1f4d7ed7fc2035b3dc98b7f84297 (diff) | |
download | chromium_src-f08b1a22c7f4e7383d7ffdd9db99776234e38fe7.zip chromium_src-f08b1a22c7f4e7383d7ffdd9db99776234e38fe7.tar.gz chromium_src-f08b1a22c7f4e7383d7ffdd9db99776234e38fe7.tar.bz2 |
Fix typo
TBR=sky@chromium.org
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10054014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131786 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/gfx/point_f.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gfx/point_f.cc b/ui/gfx/point_f.cc index 57dbca7..bdc4a66 100644 --- a/ui/gfx/point_f.cc +++ b/ui/gfx/point_f.cc @@ -11,7 +11,7 @@ namespace gfx { -template class PointBase<Point, float>; +template class PointBase<PointF, float>; PointF::PointF() : PointBase<PointF, float>(0, 0) { } |