Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another GYP fix Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
};
}

Powered by Google App Engine
This is Rietveld 408576698