| 319 | bool ReadableFile::closed() const { return !impl_->is_open(); } |
| 320 | |
| 321 | Status ReadableFile::WillNeed(const std::vector<ReadRange>& ranges) { |
| 322 | return impl_->WillNeed(ranges); |
| 323 | } |
| 324 | |
| 325 | Result<int64_t> ReadableFile::DoTell() const { return impl_->Tell(); } |
| 326 |