summaryrefslogtreecommitdiffstats
path: root/gfx/canvas.h
diff options
context:
space:
mode:
authoranicolao@chromium.org <anicolao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-24 19:14:57 +0000
committeranicolao@chromium.org <anicolao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-24 19:14:57 +0000
commit602627ccfcedd1183fa558a89ade93e9b8c4416a (patch)
treee6e1818199d874b9d735de2c4dff49b549ec10bc /gfx/canvas.h
parent23214631f9f132f7f08c8e13f2137b7334dd6aea (diff)
downloadchromium_src-602627ccfcedd1183fa558a89ade93e9b8c4416a.zip
chromium_src-602627ccfcedd1183fa558a89ade93e9b8c4416a.tar.gz
chromium_src-602627ccfcedd1183fa558a89ade93e9b8c4416a.tar.bz2
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
Diffstat (limited to 'gfx/canvas.h')
-rw-r--r--gfx/canvas.h5
1 files changed, 5 insertions, 0 deletions
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;