| 352 | return target_->DeleteDir(d); |
| 353 | } |
| 354 | Status GetFileSize(const std::string& f, uint64_t* s) override { |
| 355 | return target_->GetFileSize(f, s); |
| 356 | } |
| 357 | Status RenameFile(const std::string& s, const std::string& t) override { |
| 358 | return target_->RenameFile(s, t); |
| 359 | } |
no test coverage detected