| 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 c0489f5065c68fb619226e8db34f6aa6bff3c5d0..8a111a9367b90f6bfb4a064de85ec2952f97b7ee 100644
|
| --- a/third_party/WebKit/Source/wtf/CurrentTime.h
|
| +++ b/third_party/WebKit/Source/wtf/CurrentTime.h
|
| @@ -42,9 +42,8 @@ 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.
|
| @@ -55,17 +54,16 @@ WTF_EXPORT double monotonicallyIncreasingTime();
|
| // system.
|
| WTF_EXPORT double systemTraceTime();
|
|
|
| -typedef double(*TimeFunction)(void);
|
| +typedef double (*TimeFunction)(void);
|
| void setCurrentTimeFunction(TimeFunction);
|
| WTF_EXPORT void setMonotonicallyIncreasingTimeFunction(TimeFunction);
|
| void setSystemTraceTimeFunction(TimeFunction);
|
|
|
| -
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|
| using WTF::currentTime;
|
| using WTF::currentTimeMS;
|
| using WTF::monotonicallyIncreasingTime;
|
| using WTF::systemTraceTime;
|
|
|
| -#endif // CurrentTime_h
|
| +#endif // CurrentTime_h
|
|
|