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

Unified Diff: Source/platform/scroll/ScrollableAreaTest.cpp

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing #include Created 5 years, 3 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: Source/platform/scroll/ScrollableAreaTest.cpp
diff --git a/Source/platform/scroll/ScrollableAreaTest.cpp b/Source/platform/scroll/ScrollableAreaTest.cpp
index 5d25c0a12fa23b879816461be50ac5f1515ce599..916560ae1e0e94e5313a2cbc4081fbd7690eab04 100644
--- a/Source/platform/scroll/ScrollableAreaTest.cpp
+++ b/Source/platform/scroll/ScrollableAreaTest.cpp
@@ -64,14 +64,10 @@ public:
FakeWebThread() { }
~FakeWebThread() override { }
- void postTask(const WebTraceLocation&, Task*) override
- {
- ASSERT_NOT_REACHED();
- }
-
- void postDelayedTask(const WebTraceLocation&, Task*, long long) override
+ WebTaskRunner* taskRunner() override
{
ASSERT_NOT_REACHED();
+ return nullptr;
}
bool isCurrentThread() const override
« no previous file with comments | « Source/platform/scheduler/CancellableTaskFactoryTest.cpp ('k') | Source/platform/testing/UnitTestHelpers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698