| Index: third_party/WebKit/Source/wtf/CurrentTime.h
|
| diff --git a/third_party/WebKit/Source/wtf/CurrentTime.h b/third_party/WebKit/Source/wtf/CurrentTime.h
|
| index e41ccad8755e3803efcb9a4f8cedc4c3e53cdd02..1e2863e3569843352f38e238da41f62b993f6ebe 100644
|
| --- a/third_party/WebKit/Source/wtf/CurrentTime.h
|
| +++ b/third_party/WebKit/Source/wtf/CurrentTime.h
|
| @@ -42,23 +42,22 @@ namespace WTF {
|
| WTF_EXPORT double currentTime();
|
|
|
| // Same thing, in milliseconds.
|
| -inline double currentTimeMS()
|
| -{
|
| - return currentTime() * 1000.0;
|
| +inline double currentTimeMS() {
|
| + return currentTime() * 1000.0;
|
| }
|
|
|
| // Provides a monotonically increasing time in seconds since an arbitrary point in the past.
|
| // On unsupported platforms, this function only guarantees the result will be non-decreasing.
|
| WTF_EXPORT double monotonicallyIncreasingTime();
|
|
|
| -typedef double(*TimeFunction)(void);
|
| +typedef double (*TimeFunction)(void);
|
| void setCurrentTimeFunction(TimeFunction);
|
| WTF_EXPORT void setMonotonicallyIncreasingTimeFunction(TimeFunction);
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|
| using WTF::currentTime;
|
| using WTF::currentTimeMS;
|
| using WTF::monotonicallyIncreasingTime;
|
|
|
| -#endif // CurrentTime_h
|
| +#endif // CurrentTime_h
|
|
|