| Index: webrtc/base/gunit.h
 | 
| diff --git a/webrtc/base/gunit.h b/webrtc/base/gunit.h
 | 
| index d49872db19021c2d52d977f79a0896218b08cd7b..10258c7a57f307294df52515f18836649b139aa4 100644
 | 
| --- a/webrtc/base/gunit.h
 | 
| +++ b/webrtc/base/gunit.h
 | 
| @@ -92,6 +92,7 @@
 | 
|  
 | 
|  // Wait until "ex" is true, or "timeout" expires, using fake clock where
 | 
|  // messages are processed every millisecond.
 | 
| +// TODO(pthatcher): Allow tests to control how many milliseconds to advance.
 | 
|  #define SIMULATED_WAIT(ex, timeout, clock)                    \
 | 
|    for (int64_t start = rtc::TimeMillis();                     \
 | 
|         !(ex) && rtc::TimeMillis() < start + (timeout);) {     \
 | 
| 
 |