| Index: skia/ext/analysis_canvas.cc
|
| diff --git a/skia/ext/analysis_canvas.cc b/skia/ext/analysis_canvas.cc
|
| index 9db42f17ab67093694b1998ffa801ecfc3ea886f..e77ff2b72c775db92408700a6644899a8c67fbf7 100644
|
| --- a/skia/ext/analysis_canvas.cc
|
| +++ b/skia/ext/analysis_canvas.cc
|
| @@ -182,6 +182,16 @@ void AnalysisDevice::drawOval(const SkDraw& draw,
|
| is_transparent_ = false;
|
| }
|
|
|
| +void AnalysisDevice::drawRRect(const SkDraw& draw,
|
| + const SkRRect& rr,
|
| + const SkPaint& paint) {
|
| + // This should add the SkRRect to an SkPath, and call
|
| + // drawPath, but since drawPath ignores the SkPath, just
|
| + // do the same work here.
|
| + is_solid_color_ = false;
|
| + is_transparent_ = false;
|
| +}
|
| +
|
| void AnalysisDevice::drawPath(const SkDraw& draw,
|
| const SkPath& path,
|
| const SkPaint& paint,
|
|
|