Index: include/core/SkStream.h |
diff --git a/include/core/SkStream.h b/include/core/SkStream.h |
index d7a105d3b84e1080fdc4157b1d40f52a1c68750c..2091c765df37c12cb8e6ea608f221dcb73466e9e 100644 |
--- a/include/core/SkStream.h |
+++ b/include/core/SkStream.h |
@@ -96,7 +96,9 @@ public: |
SkData* readData(); |
//SkStreamRewindable |
- /** Rewinds to the beginning of the stream. If this cannot be done, return false. */ |
+ /** Rewinds to the beginning of the stream. Returns true iff the stream is rewindable |
+ * and after this call the stream is at the beginning. |
scroggo
2013/08/26 20:44:31
Per discussion with Ben, I modified this comment t
|
+ */ |
virtual bool rewind() { return false; } |
/** Duplicates this stream. If this cannot be done, returns NULL. |