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

Unified Diff: storage/browser/fileapi/task_runner_bound_observer_list.h

Issue 2890143004: Rename TaskRunner::RunsTasksOnCurrentThread() in //storage (Closed)
Patch Set: for Requirements 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « storage/browser/fileapi/sandbox_quota_observer.cc ('k') | storage/browser/fileapi/timed_task_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/task_runner_bound_observer_list.h
diff --git a/storage/browser/fileapi/task_runner_bound_observer_list.h b/storage/browser/fileapi/task_runner_bound_observer_list.h
index eae9ddf18d419ef84c1616eb9ba17234377b4e67..d035dd0a25fcdd696f0e2aa153381211e6d02456 100644
--- a/storage/browser/fileapi/task_runner_bound_observer_list.h
+++ b/storage/browser/fileapi/task_runner_bound_observer_list.h
@@ -69,7 +69,7 @@ class TaskRunnerBoundObserverList {
"bad unbound method params");
for (typename ObserversListMap::const_iterator it = observers_.begin();
it != observers_.end(); ++it) {
- if (!it->second.get() || it->second->RunsTasksOnCurrentThread()) {
+ if (!it->second.get() || it->second->RunsTasksInCurrentSequence()) {
base::DispatchToMethod(it->first, method, params);
continue;
}
« no previous file with comments | « storage/browser/fileapi/sandbox_quota_observer.cc ('k') | storage/browser/fileapi/timed_task_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698