Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Unified Diff: gfx/canvas_direct2d.cc

Issue 4319003: Replace TabContentsViewGtk with TabContentsViewViews as part of the ongoing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address final comments from reviewers Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gfx/canvas_direct2d.h ('k') | gfx/canvas_skia.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « gfx/canvas_direct2d.h ('k') | gfx/canvas_skia.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698