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

Unified Diff: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.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/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 971224d393d4160be420ac58ac85cf3a3b5d995d..dde0f64e64a71c91a5261d7c42ae9edec91361b3 100644
--- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
+++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp
@@ -101,6 +101,12 @@ public:
return 0.0;
}
+ scoped_refptr<base::SingleThreadTaskRunner> taskRunner() override
+ {
+ ASSERT_NOT_REACHED();
+ return nullptr;
+ }
+
private:
Deque<std::unique_ptr<WebTaskRunner::Task>>* m_tasks; // NOT OWNED
};

Powered by Google App Engine
This is Rietveld 408576698