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

Unified Diff: ios/web/web_thread_impl.cc

Issue 2915583002: Revert of Remove unused blocking pool methods from web::WebThread. (Closed)
Patch Set: Rebase on http://crrev.com/2912073002. Created 3 years, 7 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
« no previous file with comments | « ios/web/public/web_thread.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/web_thread_impl.cc
diff --git a/ios/web/web_thread_impl.cc b/ios/web/web_thread_impl.cc
index d1d6f415c6e70afc4f38c6cdcd2c4bc07abac2f9..b6d082eeca64c24811324ac2333c109775e531d0 100644
--- a/ios/web/web_thread_impl.cc
+++ b/ios/web/web_thread_impl.cc
@@ -330,6 +330,31 @@ bool WebThreadImpl::PostTaskHelper(WebThread::ID identifier,
}
// static
+bool WebThread::PostBlockingPoolTask(const tracked_objects::Location& from_here,
+ base::OnceClosure task) {
+ return g_globals.Get().blocking_pool->PostWorkerTask(from_here,
+ std::move(task));
+}
+
+// static
+bool WebThread::PostBlockingPoolTaskAndReply(
+ const tracked_objects::Location& from_here,
+ base::OnceClosure task,
+ base::OnceClosure reply) {
+ return g_globals.Get().blocking_pool->PostTaskAndReply(
+ from_here, std::move(task), std::move(reply));
+}
+
+// static
+bool WebThread::PostBlockingPoolSequencedTask(
+ const std::string& sequence_token_name,
+ const tracked_objects::Location& from_here,
+ base::OnceClosure task) {
+ return g_globals.Get().blocking_pool->PostNamedSequencedWorkerTask(
+ sequence_token_name, from_here, std::move(task));
+}
+
+// static
base::SequencedWorkerPool* WebThread::GetBlockingPool() {
return g_globals.Get().blocking_pool.get();
}
« no previous file with comments | « ios/web/public/web_thread.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698