Chromium Code Reviews| Index: media/base/filters.h |
| =================================================================== |
| --- media/base/filters.h (revision 21979) |
| +++ media/base/filters.h (working copy) |
| @@ -174,8 +174,9 @@ |
| // retrieved. |
| virtual bool GetSize(int64* size_out) = 0; |
| - // Returns true if this data source supports random seeking. |
| - virtual bool IsSeekable() = 0; |
| + // Returns true if we are performing streaming. In this case seeking is |
| + // not possible. |
| + virtual bool IsStreaming() = 0; |
| }; |