| Index: third_party/WebKit/Source/wtf/CurrentTime.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/CurrentTime.cpp b/third_party/WebKit/Source/wtf/CurrentTime.cpp
|
| index c29636f98c9cc551ec735476ecca99893408a8a3..7a41b0ee832bf0f6603f3c24f0818947ec3963c8 100644
|
| --- a/third_party/WebKit/Source/wtf/CurrentTime.cpp
|
| +++ b/third_party/WebKit/Source/wtf/CurrentTime.cpp
|
| @@ -35,24 +35,20 @@ namespace WTF {
|
| static TimeFunction currentTimeFunction;
|
| static TimeFunction monotonicallyIncreasingTimeFunction;
|
|
|
| -void setCurrentTimeFunction(TimeFunction func)
|
| -{
|
| - currentTimeFunction = func;
|
| +void setCurrentTimeFunction(TimeFunction func) {
|
| + currentTimeFunction = func;
|
| }
|
|
|
| -void setMonotonicallyIncreasingTimeFunction(TimeFunction func)
|
| -{
|
| - monotonicallyIncreasingTimeFunction = func;
|
| +void setMonotonicallyIncreasingTimeFunction(TimeFunction func) {
|
| + monotonicallyIncreasingTimeFunction = func;
|
| }
|
|
|
| -double currentTime()
|
| -{
|
| - return (*currentTimeFunction)();
|
| +double currentTime() {
|
| + return (*currentTimeFunction)();
|
| }
|
|
|
| -double monotonicallyIncreasingTime()
|
| -{
|
| - return (*monotonicallyIncreasingTimeFunction)();
|
| +double monotonicallyIncreasingTime() {
|
| + return (*monotonicallyIncreasingTimeFunction)();
|
| }
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|