| 358 | return target_->RenameFile(s, t); |
| 359 | } |
| 360 | Status LockFile(const std::string& f, FileLock** l) override { |
| 361 | return target_->LockFile(f, l); |
| 362 | } |
| 363 | Status UnlockFile(FileLock* l) override { return target_->UnlockFile(l); } |
| 364 | void Schedule(void (*f)(void*), void* a) override { |
| 365 | return target_->Schedule(f, a); |
no test coverage detected