| Index: gfx/canvas_direct2d.cc
|
| diff --git a/gfx/canvas_direct2d.cc b/gfx/canvas_direct2d.cc
|
| index 3dfcc85166dc25feb48da193daff350b707b6ffe..585659d11fd606e87ec9b6a8d79dcdf25ca5fc00 100644
|
| --- a/gfx/canvas_direct2d.cc
|
| +++ b/gfx/canvas_direct2d.cc
|
| @@ -209,6 +209,12 @@ void CanvasDirect2D::FillRectInt(const SkColor& color,
|
| rt_->FillRectangle(RectToRectF(x, y, w, h), solid_brush);
|
| }
|
|
|
| +void CanvasDirect2D::FillRectInt(const SkColor& color,
|
| + int x, int y, int w, int h,
|
| + SkXfermode::Mode mode) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void CanvasDirect2D::FillRectInt(const gfx::Brush* brush,
|
| int x, int y, int w, int h) {
|
| const Direct2DBrush* d2d_brush = static_cast<const Direct2DBrush*>(brush);
|
|
|