Index: include/core/SkPictureRecorder.h |
diff --git a/include/core/SkPictureRecorder.h b/include/core/SkPictureRecorder.h |
index 0459737e1f458f632bdad42156fad2047a8aea24..2cf7909cf303a30c9dccd376762c7231a31802da 100644 |
--- a/include/core/SkPictureRecorder.h |
+++ b/include/core/SkPictureRecorder.h |
@@ -67,7 +67,7 @@ public: |
* reflect their current state, but will not contain a live reference to the drawables |
* themselves. |
*/ |
- SkPicture* endRecordingAsPicture(); |
+ SkPicture* SK_WARN_UNUSED_RESULT endRecordingAsPicture(); |
/** |
* Signal that the caller is done recording. This invalidates the canvas returned by |
@@ -79,10 +79,10 @@ public: |
* and therefore this drawable will reflect the current state of those nested drawables anytime |
* it is drawn or a new picture is snapped from it (by calling drawable->newPictureSnapshot()). |
*/ |
- SkDrawable* endRecordingAsDrawable(); |
+ SkDrawable* SK_WARN_UNUSED_RESULT endRecordingAsDrawable(); |
// Legacy API -- use endRecordingAsPicture instead. |
- SkPicture* endRecording() { return this->endRecordingAsPicture(); } |
+ SkPicture* SK_WARN_UNUSED_RESULT endRecording() { return this->endRecordingAsPicture(); } |
private: |
void reset(); |