Index: include/core/SkStream.h |
diff --git a/include/core/SkStream.h b/include/core/SkStream.h |
index d7a105d3b84e1080fdc4157b1d40f52a1c68750c..27f8ead141fc2a7a1398091b4845168b5f048d1b 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 if the stream is known |
+ * to be at the beginning after this call returns. |
+ */ |
virtual bool rewind() { return false; } |
/** Duplicates this stream. If this cannot be done, returns NULL. |