| Index: components/sync/engine/model_safe_worker.h
|
| diff --git a/components/sync/engine/model_safe_worker.h b/components/sync/engine/model_safe_worker.h
|
| index 620297fb2951cdbfa88c4442daef16b850cfb44f..aaceee8ebaad0e31facf0ff73588ece65c38ece9 100644
|
| --- a/components/sync/engine/model_safe_worker.h
|
| +++ b/components/sync/engine/model_safe_worker.h
|
| @@ -66,8 +66,8 @@ class ModelSafeWorker : public base::RefCountedThreadSafe<ModelSafeWorker> {
|
|
|
| virtual ModelSafeGroup GetModelSafeGroup() = 0;
|
|
|
| - // Returns true if called on the thread this worker works on.
|
| - virtual bool IsOnModelThread() = 0;
|
| + // Returns true if called on the sequence this worker works on.
|
| + virtual bool IsOnModelSequence() = 0;
|
|
|
| protected:
|
| ModelSafeWorker();
|
| @@ -76,7 +76,7 @@ class ModelSafeWorker : public base::RefCountedThreadSafe<ModelSafeWorker> {
|
| private:
|
| friend class base::RefCountedThreadSafe<ModelSafeWorker>;
|
|
|
| - // Schedules |work| on the appropriate thread.
|
| + // Schedules |work| on the appropriate sequence.
|
| virtual void ScheduleWork(base::OnceClosure work) = 0;
|
|
|
| void DoWork(WorkCallback work,
|
|
|