 Chromium Code Reviews
 Chromium Code Reviews Issue 2689273002:
  Fix appearance of header row separators in table view at fractional  (Closed)
    
  
    Issue 2689273002:
  Fix appearance of header row separators in table view at fractional  (Closed) 
  | Index: ui/gfx/canvas.h | 
| diff --git a/ui/gfx/canvas.h b/ui/gfx/canvas.h | 
| index bb2a90e13934f9bf653e9cb85b50dba90b266402..50742de41da41b7d5766ce127c0876cab0e058f6 100644 | 
| --- a/ui/gfx/canvas.h | 
| +++ b/ui/gfx/canvas.h | 
| @@ -292,6 +292,10 @@ class GFX_EXPORT Canvas { | 
| const PointF& p2, | 
| const cc::PaintFlags& flags); | 
| + // Draws a line that's a single DIP. At fractional scale factors, this is | 
| + // floored to the nearest integral number of pixels. | 
| + void DrawSharpLine(const PointF& p1, const PointF& p2, SkColor color); | 
| 
Peter Kasting
2017/02/15 00:43:59
Nit: Is "Sharp" the best name for this?  "DrawInte
 
Evan Stade
2017/02/15 16:54:46
well, naming is hard. I like Sharp better than Int
 | 
| + | 
| // Draws a circle with the given |flags| parameters. | 
| // DEPRECATED in favor of the RectF version below. | 
| // TODO(funkysidd): Remove this (http://crbug.com/553726) |