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

Unified Diff: chrome/common/gfx/chrome_canvas.h

Issue 67149: Fixes regression in painting info bubble. This is the result of... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 months 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: chrome/common/gfx/chrome_canvas.h
===================================================================
--- chrome/common/gfx/chrome_canvas.h (revision 13665)
+++ chrome/common/gfx/chrome_canvas.h (working copy)
@@ -105,6 +105,9 @@
void DrawRectInt(const SkColor& color, int x, int y, int w, int h,
SkPorterDuff::Mode mode);
+ // Draws a single pixel line with the specified color.
+ void DrawLineInt(const SkColor& color, int x1, int y1, int x2, int y2);
+
// Draws a bitmap with the origin at the specified location. The upper left
// corner of the bitmap is rendered at the specified location.
void DrawBitmapInt(const SkBitmap& bitmap, int x, int y);

Powered by Google App Engine
This is Rietveld 408576698