| Index: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| diff --git a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| index 971224d393d4160be420ac58ac85cf3a3b5d995d..34ec0bc12f3fd765feed185011cf78a265b239dd 100644
|
| --- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| @@ -81,7 +81,13 @@ public:
|
|
|
| void postDelayedTask(const WebTraceLocation&, Task*, double delayMs) override
|
| {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| + }
|
| +
|
| + bool runsTasksOnCurrentThread() override
|
| + {
|
| + NOTREACHED();
|
| + return true;
|
| }
|
|
|
| WebTaskRunner* clone() override
|
| @@ -91,13 +97,13 @@ public:
|
|
|
| double virtualTimeSeconds() const override
|
| {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return 0.0;
|
| }
|
|
|
| double monotonicallyIncreasingVirtualTimeSeconds() const override
|
| {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return 0.0;
|
| }
|
|
|
| @@ -148,7 +154,7 @@ public:
|
|
|
| bool isCurrentThread() const override
|
| {
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return true;
|
| }
|
|
|
|
|