| 222 | bool FutureImpl::Wait(double seconds) { return GetConcreteFuture(this)->DoWait(seconds); } |
| 223 | |
| 224 | void FutureImpl::MarkFinished() { GetConcreteFuture(this)->DoMarkFinished(); } |
| 225 | |
| 226 | void FutureImpl::MarkFailed() { GetConcreteFuture(this)->DoMarkFailed(); } |
| 227 |