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

Unified Diff: content/child/web_data_consumer_handle_impl_unittest.cc

Issue 2177243002: Use per-frame TaskRunner instead of thread's default in DataConsumerHandle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@data_consumer_handle_unique_ptr
Patch Set: update 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: content/child/web_data_consumer_handle_impl_unittest.cc
diff --git a/content/child/web_data_consumer_handle_impl_unittest.cc b/content/child/web_data_consumer_handle_impl_unittest.cc
index 7ad46d7f9b7257c791e8eed31ae81c40186cba0b..4f64089c26b63f65a553a01a78616a30ae71d951 100644
--- a/content/child/web_data_consumer_handle_impl_unittest.cc
+++ b/content/child/web_data_consumer_handle_impl_unittest.cc
@@ -53,6 +53,9 @@ class ClientImpl final : public WebDataConsumerHandle::Client {
FROM_HERE, base::Bind(&ReadDataOperationBase::ReadMore,
base::Unretained(operation_)));
}
+ blink::WebTaskRunner* getTaskRunner() override {
+ return nullptr;
+ }
private:
ReadDataOperationBase* operation_;

Powered by Google App Engine
This is Rietveld 408576698