| 313 | bool ReadableFile::closed() const { return !impl_->is_open(); } |
| 314 | |
| 315 | Status ReadableFile::WillNeed(const std::vector<ReadRange>& ranges) { |
| 316 | return impl_->WillNeed(ranges); |
| 317 | } |
| 318 | |
| 319 | Result<int64_t> ReadableFile::DoTell() const { return impl_->Tell(); } |
| 320 |