| Index: third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/HeapPage.cpp b/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| index 48fef56bb8d22195b33ce7ad3b0c8a15ffeb2b25..44d74dd28995f8cb139f9229b28721cd7e71ba9c 100644
|
| --- a/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| @@ -339,7 +339,7 @@ bool BaseHeap::lazySweepWithDeadline(double deadlineSeconds)
|
| while (m_firstUnsweptPage) {
|
| sweepUnsweptPage();
|
| if (pageCount % deadlineCheckInterval == 0) {
|
| - if (deadlineSeconds <= Platform::current()->monotonicallyIncreasingTimeSeconds()) {
|
| + if (deadlineSeconds <= monotonicallyIncreasingTime()) {
|
| // Deadline has come.
|
| Heap::reportMemoryUsageForTracing();
|
| return !m_firstUnsweptPage;
|
|
|