| Index: gfx/canvas.h
|
| diff --git a/gfx/canvas.h b/gfx/canvas.h
|
| index 077a8a25146cf79c635c2173f1afe3464def04d9..c68cdabd2bc958016ccd804412264fe2d5a8c3f7 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;
|
|
|