| Index: third_party/WebKit/public/platform/Platform.h
|
| diff --git a/third_party/WebKit/public/platform/Platform.h b/third_party/WebKit/public/platform/Platform.h
|
| index cdc1a5b7c146ce2cfd8ca6c6ba00eb5e8f31e747..d1713f9389d054b03dbe99e2346fbb615fe8b705 100644
|
| --- a/third_party/WebKit/public/platform/Platform.h
|
| +++ b/third_party/WebKit/public/platform/Platform.h
|
| @@ -426,12 +426,12 @@ public:
|
| virtual WebString defaultLocale() { return WebString(); }
|
|
|
| // Wall clock time in seconds since the epoch.
|
| - virtual double currentTime() { return 0; }
|
| + virtual double currentTimeSeconds() { return 0; }
|
|
|
| // Monotonically increasing time in seconds from an arbitrary fixed point in the past.
|
| // This function is expected to return at least millisecond-precision values. For this reason,
|
| // it is recommended that the fixed point be no further in the past than the epoch.
|
| - virtual double monotonicallyIncreasingTime() { return 0; }
|
| + virtual double monotonicallyIncreasingTimeSeconds() { return 0; }
|
|
|
| // System trace time in seconds. For example, on Chrome OS, this timestamp should be
|
| // synchronized with ftrace timestamps.
|
|
|