Chromium Code Reviews| Index: third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp |
| diff --git a/third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp b/third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp |
| index b17a699bbb0edf5c6103119e474e3621949084fb..877315f1533dce17a00eedf4065cdcc4805e92ea 100644 |
| --- a/third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp |
| +++ b/third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp |
| @@ -56,6 +56,7 @@ namespace { |
| class MockTaskRunner : public blink::WebTaskRunner { |
| void postTask(const WebTraceLocation&, Task*) override { } |
| void postDelayedTask(const WebTraceLocation&, Task*, double) override { } |
| + bool runsTasksOnCurrentThread() override { return false; } |
|
kinuko
2016/07/05 14:09:19
At a quick glance it feels a bit strange to return
tzik
2016/07/05 15:22:40
Done.
|
| WebTaskRunner* clone() override { return nullptr; } |
| double virtualTimeSeconds() const override { return 0.0; } |
| double monotonicallyIncreasingVirtualTimeSeconds() const override { return 0.0; } |