| 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 810f287d7aa5cb978620b5a77c3242221b310403..53124475f3965b3e22e798aa6829cb1b1d68600f 100644
|
| --- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
|
| @@ -130,6 +130,18 @@ public:
|
| return new TestingPlatformMockWebTaskRunner(m_tasks);
|
| }
|
|
|
| + double virtualTimeSeconds() const override
|
| + {
|
| + ASSERT_NOT_REACHED();
|
| + return 0.0;
|
| + }
|
| +
|
| + double monotonicallyIncreasingVirtualTimeSeconds() const override
|
| + {
|
| + ASSERT_NOT_REACHED();
|
| + return 0.0;
|
| + }
|
| +
|
| private:
|
| Deque<OwnPtr<WebTaskRunner::Task>>* m_tasks; // NOT OWNED
|
| };
|
|
|