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..e35f230f4e9fe050d39d5673758128aaca15b9cb 100644 |
| --- a/third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp |
| +++ b/third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp |
| @@ -59,6 +59,7 @@ class MockTaskRunner : public blink::WebTaskRunner { |
| WebTaskRunner* clone() override { return nullptr; } |
| double virtualTimeSeconds() const override { return 0.0; } |
| double monotonicallyIncreasingVirtualTimeSeconds() const override { return 0.0; } |
| + scoped_refptr<base::SingleThreadTaskRunner> taskRunner() override { return nullptr; } |
|
esprehn
2016/07/22 06:12:11
you can't use scoped_refptr in core/, this would n
Sami
2016/07/29 17:03:27
Turns out it's not needed: I've now made it a raw
|
| }; |
| } |