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

Unified Diff: gfx/canvas.h

Issue 4319003: Replace TabContentsViewGtk with TabContentsViewViews as part of the ongoing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Last patchset was missing canvas_direct2d.cc edit, fixed it and sent to try bots. 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
Index: gfx/canvas.h
diff --git a/gfx/canvas.h b/gfx/canvas.h
index 077a8a25146cf79c635c2173f1afe3464def04d9..61cd66f7e33a9b5cf5010f229eedf9deb1f36b84 100644
--- a/gfx/canvas.h
+++ b/gfx/canvas.h
@@ -101,6 +101,10 @@ class Canvas {
// mode of SkXfermode::kSrcOver_Mode.
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
brettw 2010/11/08 21:44:06 Can you put a blank line above this?
Alex Nicolaou 2010/11/12 04:05:00 Done, but that's not the way overloads are done el
+ 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,

Powered by Google App Engine
This is Rietveld 408576698