From 602627ccfcedd1183fa558a89ade93e9b8c4416a Mon Sep 17 00:00:00 2001 From: "anicolao@chromium.org" Date: Wed, 24 Nov 2010 19:14:57 +0000 Subject: Replace TabContentsViewGtk with TabContentsViewViews as part of the ongoing effort to eliminate GTK for TOUCH_UI. BUG=none TEST=manually tested Review URL: http://codereview.chromium.org/4319003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67291 0039d316-1c4b-4281-b951-d872f2087c98 --- gfx/canvas.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gfx/canvas.h') diff --git a/gfx/canvas.h b/gfx/canvas.h index 077a8a2..c68cdab 100644 --- a/gfx/canvas.h +++ b/gfx/canvas.h @@ -102,6 +102,11 @@ class Canvas { virtual void FillRectInt(const SkColor& color, int x, int y, int w, int h) = 0; + // Fills the specified region with the specified color and mode + virtual void FillRectInt(const SkColor& color, + int x, int y, int w, int h, + SkXfermode::Mode mode) = 0; + // Fills the specified region with the specified brush. virtual void FillRectInt(const gfx::Brush* brush, int x, int y, int w, int h) = 0; -- cgit v1.1