| Index: components/html_viewer/blink_platform_impl.cc
|
| diff --git a/components/html_viewer/blink_platform_impl.cc b/components/html_viewer/blink_platform_impl.cc
|
| index 1f578ab384d6169088f32e3a704e1e29470b3ab6..b8eb54f25e1f6e76ce1360eee5c920489ab3e350 100644
|
| --- a/components/html_viewer/blink_platform_impl.cc
|
| +++ b/components/html_viewer/blink_platform_impl.cc
|
| @@ -124,11 +124,11 @@ blink::WebBlobRegistry* BlinkPlatformImpl::blobRegistry() {
|
| return &blob_registry_;
|
| }
|
|
|
| -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);
|
| }
|
|
|