| Index: third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreator.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreator.cpp b/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreator.cpp
|
| index a9e0a4cd8d1458d798f8f32e78accde2a22e0e3d..d75e0047f741de2f878353d449998a68403853be 100644
|
| --- a/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreator.cpp
|
| +++ b/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreator.cpp
|
| @@ -16,6 +16,7 @@
|
| #include "public/platform/WebTaskRunner.h"
|
| #include "public/platform/WebThread.h"
|
| #include "public/platform/WebTraceLocation.h"
|
| +#include "wtf/CurrentTime.h"
|
| #include "wtf/Functional.h"
|
|
|
| namespace blink {
|
| @@ -28,7 +29,7 @@ const int LongTaskImageSizeThreshold = 1000 * 1000; // The max image size we exp
|
|
|
| bool isDeadlineNearOrPassed(double deadlineSeconds)
|
| {
|
| - return (deadlineSeconds - SlackBeforeDeadline - Platform::current()->monotonicallyIncreasingTimeSeconds() <= 0);
|
| + return (deadlineSeconds - SlackBeforeDeadline - monotonicallyIncreasingTime() <= 0);
|
| }
|
|
|
| } // anonymous namespace
|
|
|