diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-27 12:29:21 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-27 12:29:21 +0000 |
commit | 80277112be3fb17ae6ad8e2aa41951a1e5d9098c (patch) | |
tree | 264e06468a0bd2080834ee8a3fabd673fc6fb298 /ui/gfx/canvas.h | |
parent | 8333b9b18f9b8758fd77319d184b182dd9d41f34 (diff) | |
download | chromium_src-80277112be3fb17ae6ad8e2aa41951a1e5d9098c.zip chromium_src-80277112be3fb17ae6ad8e2aa41951a1e5d9098c.tar.gz chromium_src-80277112be3fb17ae6ad8e2aa41951a1e5d9098c.tar.bz2 |
ui/gfx: Change Canvas::ScaleInt() to just Canvas::Scale().
BUG=100898
R=pkasting@chromium.org
Review URL: http://codereview.chromium.org/8363036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107559 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/canvas.h')
-rw-r--r-- | ui/gfx/canvas.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/gfx/canvas.h b/ui/gfx/canvas.h index 189aeb4..2887b30 100644 --- a/ui/gfx/canvas.h +++ b/ui/gfx/canvas.h @@ -103,8 +103,7 @@ class UI_EXPORT Canvas { virtual void Translate(const gfx::Point& point) = 0; - // Wrapper function that takes integer arguments. - virtual void ScaleInt(int x, int y) = 0; + virtual void Scale(int x_scale, int y_scale) = 0; // Fills the specified region with the specified color using a transfer // mode of SkXfermode::kSrcOver_Mode. |