| 368 | |
| 369 | uint64 NowMicros() const override { return target_->NowMicros(); } |
| 370 | void SleepForMicroseconds(int64 micros) override { |
| 371 | target_->SleepForMicroseconds(micros); |
| 372 | } |
| 373 | Thread* StartThread(const ThreadOptions& thread_options, const string& name, |
| 374 | std::function<void()> fn) override { |
| 375 | return target_->StartThread(thread_options, name, fn); |
no outgoing calls