| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "wtf/CurrentTime.h" | 31 #include "wtf/CurrentTime.h" |
| 32 | 32 |
| 33 namespace WTF { | 33 namespace WTF { |
| 34 | 34 |
| 35 static TimeFunction currentTimeFunction; | 35 static TimeFunction currentTimeFunction; |
| 36 static TimeFunction monotonicallyIncreasingTimeFunction; | 36 static TimeFunction monotonicallyIncreasingTimeFunction; |
| 37 | 37 |
| 38 void setCurrentTimeFunction(TimeFunction func) | 38 void setCurrentTimeFunction(TimeFunction func) { |
| 39 { | 39 currentTimeFunction = func; |
| 40 currentTimeFunction = func; | |
| 41 } | 40 } |
| 42 | 41 |
| 43 void setMonotonicallyIncreasingTimeFunction(TimeFunction func) | 42 void setMonotonicallyIncreasingTimeFunction(TimeFunction func) { |
| 44 { | 43 monotonicallyIncreasingTimeFunction = func; |
| 45 monotonicallyIncreasingTimeFunction = func; | |
| 46 } | 44 } |
| 47 | 45 |
| 48 double currentTime() | 46 double currentTime() { |
| 49 { | 47 return (*currentTimeFunction)(); |
| 50 return (*currentTimeFunction)(); | |
| 51 } | 48 } |
| 52 | 49 |
| 53 double monotonicallyIncreasingTime() | 50 double monotonicallyIncreasingTime() { |
| 54 { | 51 return (*monotonicallyIncreasingTimeFunction)(); |
| 55 return (*monotonicallyIncreasingTimeFunction)(); | |
| 56 } | 52 } |
| 57 | 53 |
| 58 } // namespace WTF | 54 } // namespace WTF |
| OLD | NEW |