| Index: content/browser/browser_thread_impl.cc
|
| diff --git a/content/browser/browser_thread_impl.cc b/content/browser/browser_thread_impl.cc
|
| index 8df7974b7ee91922119b4d1ab7292c8f0af0c68a..2cd2efffe6b70954551dabfae52d4055f269f6f3 100644
|
| --- a/content/browser/browser_thread_impl.cc
|
| +++ b/content/browser/browser_thread_impl.cc
|
| @@ -532,23 +532,6 @@ bool BrowserThreadImpl::PostTaskHelper(
|
| }
|
|
|
| // static
|
| -bool BrowserThread::PostBlockingPoolTask(
|
| - const tracked_objects::Location& from_here,
|
| - base::OnceClosure task) {
|
| - return g_globals.Get().blocking_pool->PostWorkerTask(from_here,
|
| - std::move(task));
|
| -}
|
| -
|
| -// static
|
| -bool BrowserThread::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 BrowserThread::PostBlockingPoolSequencedTask(
|
| const std::string& sequence_token_name,
|
| const tracked_objects::Location& from_here,
|
|
|