diff options
author | anicolao@chromium.org <anicolao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 19:14:57 +0000 |
---|---|---|
committer | anicolao@chromium.org <anicolao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 19:14:57 +0000 |
commit | 602627ccfcedd1183fa558a89ade93e9b8c4416a (patch) | |
tree | e6e1818199d874b9d735de2c4dff49b549ec10bc /gfx/canvas_direct2d.cc | |
parent | 23214631f9f132f7f08c8e13f2137b7334dd6aea (diff) | |
download | chromium_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_direct2d.cc')
-rw-r--r-- | gfx/canvas_direct2d.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gfx/canvas_direct2d.cc b/gfx/canvas_direct2d.cc index 3dfcc851..585659d 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); |