| 326 | return target_->NewSequentialFile(f, r); |
| 327 | } |
| 328 | Status NewRandomAccessFile(const std::string& f, |
| 329 | RandomAccessFile** r) override { |
| 330 | return target_->NewRandomAccessFile(f, r); |
| 331 | } |
| 332 | Status NewWritableFile(const std::string& f, WritableFile** r) override { |
| 333 | return target_->NewWritableFile(f, r); |
| 334 | } |
nothing calls this directly
no test coverage detected