Index: src/core/SkBBoxRecord.cpp |
diff --git a/src/core/SkBBoxRecord.cpp b/src/core/SkBBoxRecord.cpp |
index 1e6c69ba09c2a3a89b3b3a1186b85a7ae0c756cd..08ae9901356b408b4ea6f7aa1d6c92c1677ba829 100644 |
--- a/src/core/SkBBoxRecord.cpp |
+++ b/src/core/SkBBoxRecord.cpp |
@@ -20,23 +20,23 @@ void SkBBoxRecord::drawRRect(const SkRRect& rrect, const SkPaint& paint) { |
} |
} |
-void SkBBoxRecord::drawRect(const SkRect& rect, const SkPaint& paint) { |
+void SkBBoxRecord::onDrawRect(const SkRect& rect, const SkPaint& paint) { |
if (this->transformBounds(rect, &paint)) { |
- INHERITED::drawRect(rect, paint); |
+ INHERITED::onDrawRect(rect, paint); |
} |
} |
-void SkBBoxRecord::drawPath(const SkPath& path, const SkPaint& paint) { |
+void SkBBoxRecord::onDrawPath(const SkPath& path, const SkPaint& paint) { |
if (path.isInverseFillType()) { |
// If path is inverse filled, use the current clip bounds as the |
// path's device-space bounding box. |
SkIRect clipBounds; |
if (this->getClipDeviceBounds(&clipBounds)) { |
this->handleBBox(SkRect::MakeFromIRect(clipBounds)); |
- INHERITED::drawPath(path, paint); |
+ INHERITED::onDrawPath(path, paint); |
} |
} else if (this->transformBounds(path.getBounds(), &paint)) { |
- INHERITED::drawPath(path, paint); |
+ INHERITED::onDrawPath(path, paint); |
} |
} |