Index: content/child/worker_thread_registry.cc |
diff --git a/content/child/worker_thread_registry.cc b/content/child/worker_thread_registry.cc |
index 2ca217f3701eff54bb58fcfe5d254d075f6bd70f..cfc9d837b503333ee8349e095ed9bc02fad1b214 100644 |
--- a/content/child/worker_thread_registry.cc |
+++ b/content/child/worker_thread_registry.cc |
@@ -119,7 +119,7 @@ void WorkerThreadRegistry::WillStopCurrentWorkerThread() { |
base::TaskRunner* WorkerThreadRegistry::GetTaskRunnerFor(int worker_id) { |
base::AutoLock locker(task_runner_map_lock_); |
- return ContainsKey(task_runner_map_, worker_id) |
+ return base::ContainsKey(task_runner_map_, worker_id) |
? task_runner_map_[worker_id] |
: task_runner_for_dead_worker_.get(); |
} |