| 330 | return target_->NewRandomAccessFile(f, r); |
| 331 | } |
| 332 | Status NewWritableFile(const std::string& f, WritableFile** r) override { |
| 333 | return target_->NewWritableFile(f, r); |
| 334 | } |
| 335 | Status NewAppendableFile(const std::string& f, WritableFile** r) override { |
| 336 | return target_->NewAppendableFile(f, r); |
| 337 | } |
nothing calls this directly
no test coverage detected