| Index: include/core/SkDraw.h | 
| diff --git a/include/core/SkDraw.h b/include/core/SkDraw.h | 
| index 772e11e00d7a4de2e1cca94e6a75856051835abb..0e5d8609aad7aa1a7cd78ba1d98741f7737742fa 100644 | 
| --- a/include/core/SkDraw.h | 
| +++ b/include/core/SkDraw.h | 
| @@ -24,6 +24,7 @@ class SkRegion; | 
| class SkRasterClip; | 
| struct SkDrawProcs; | 
| struct SkRect; | 
| +class SkRRect; | 
|  | 
| class SkDraw { | 
| public: | 
| @@ -34,6 +35,7 @@ public: | 
| void    drawPoints(SkCanvas::PointMode, size_t count, const SkPoint[], | 
| const SkPaint&, bool forceUseDevice = false) const; | 
| void    drawRect(const SkRect&, const SkPaint&) const; | 
| +    void    drawRRect(const SkRRect&, const SkPaint&) const; | 
| /** | 
| *  To save on mallocs, we allow a flag that tells us that srcPath is | 
| *  mutable, so that we don't have to make copies of it as we transform it. | 
|  |