| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index 7f99386b21206522a64ba9688703b37b50e1aa79..67c6f8e347db5e72bb7fa56eed6b5917b9fd5acb 100644
|
| --- a/content/child/blink_platform_impl.cc
|
| +++ b/content/child/blink_platform_impl.cc
|
| @@ -1074,11 +1074,11 @@ WebString BlinkPlatformImpl::queryLocalizedString(
|
| GetContentClient()->GetLocalizedString(message_id), values, NULL);
|
| }
|
|
|
| -double BlinkPlatformImpl::currentTime() {
|
| +double BlinkPlatformImpl::currentTimeSeconds() {
|
| return base::Time::Now().ToDoubleT();
|
| }
|
|
|
| -double BlinkPlatformImpl::monotonicallyIncreasingTime() {
|
| +double BlinkPlatformImpl::monotonicallyIncreasingTimeSeconds() {
|
| return base::TimeTicks::Now().ToInternalValue() /
|
| static_cast<double>(base::Time::kMicrosecondsPerSecond);
|
| }
|
|
|