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

Unified Diff: content/child/worker_thread_registry.cc

Issue 2228403003: content: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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 | « content/child/service_worker/service_worker_dispatcher.cc ('k') | content/common/origin_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « content/child/service_worker/service_worker_dispatcher.cc ('k') | content/common/origin_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698