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

Side by Side Diff: content/child/worker_thread_registry.cc

Issue 2823103003: Introduce TaskRunner::RunsTasksInCurrentSequence() (Closed)
Patch Set: rebase & remove inline keyword 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/child/worker_thread_registry.h" 5 #include "content/child/worker_thread_registry.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
(...skipping 25 matching lines...) Expand all
36 36
37 private: 37 private:
38 ~DoNothingTaskRunner() override {} 38 ~DoNothingTaskRunner() override {}
39 39
40 bool PostDelayedTask(const tracked_objects::Location& from_here, 40 bool PostDelayedTask(const tracked_objects::Location& from_here,
41 base::OnceClosure task, 41 base::OnceClosure task,
42 base::TimeDelta delay) override { 42 base::TimeDelta delay) override {
43 return false; 43 return false;
44 } 44 }
45 45
46 bool RunsTasksOnCurrentThread() const override { return false; } 46 bool RunsTasksInCurrentSequence() const override { return false; }
47 }; 47 };
48 48
49 } // namespace 49 } // namespace
50 50
51 // WorkerThread implementation: 51 // WorkerThread implementation:
52 52
53 int WorkerThread::GetCurrentId() { 53 int WorkerThread::GetCurrentId() {
54 if (!g_observers_tls.Pointer()->Get()) 54 if (!g_observers_tls.Pointer()->Get())
55 return 0; 55 return 0;
56 return base::PlatformThread::CurrentId(); 56 return base::PlatformThread::CurrentId();
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 bool WorkerThreadRegistry::PostTask(int id, base::OnceClosure closure) { 128 bool WorkerThreadRegistry::PostTask(int id, base::OnceClosure closure) {
129 DCHECK(id > 0); 129 DCHECK(id > 0);
130 base::AutoLock locker(task_runner_map_lock_); 130 base::AutoLock locker(task_runner_map_lock_);
131 IDToTaskRunnerMap::iterator found = task_runner_map_.find(id); 131 IDToTaskRunnerMap::iterator found = task_runner_map_.find(id);
132 if (found == task_runner_map_.end()) 132 if (found == task_runner_map_.end())
133 return false; 133 return false;
134 return found->second->PostTask(FROM_HERE, std::move(closure)); 134 return found->second->PostTask(FROM_HERE, std::move(closure));
135 } 135 }
136 136
137 } // namespace content 137 } // namespace content
OLDNEW
« no previous file with comments | « content/child/blob_storage/blob_transport_controller_unittest.cc ('k') | content/renderer/categorized_worker_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698