summaryrefslogtreecommitdiffstats
path: root/chromium/base/threading/thread_task_runner_handle.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/threading/thread_task_runner_handle.cc')
-rw-r--r--chromium/base/threading/thread_task_runner_handle.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/base/threading/thread_task_runner_handle.cc b/chromium/base/threading/thread_task_runner_handle.cc
index 27a3f84eee6..4a9ac88f61c 100644
--- a/chromium/base/threading/thread_task_runner_handle.cc
+++ b/chromium/base/threading/thread_task_runner_handle.cc
@@ -26,9 +26,10 @@ base::LazyInstance<base::ThreadLocalPointer<ThreadTaskRunnerHandle>>::Leaky
const scoped_refptr<SingleThreadTaskRunner>& ThreadTaskRunnerHandle::Get() {
const ThreadTaskRunnerHandle* current =
thread_task_runner_tls.Pointer()->Get();
- CHECK(current) << "Error: This caller requires a single-threaded context "
- "(i.e. the current task needs to run from a "
- "SingleThreadTaskRunner).";
+ CHECK(current)
+ << "Error: This caller requires a single-threaded context (i.e. the "
+ "current task needs to run from a SingleThreadTaskRunner). If you're "
+ "in a test refer to //docs/threading_and_tasks_testing.md.";
return current->task_runner_;
}