> It's possible that like mManager, it can only be modified on the TaskQueue thread, in which case it is safe to read it on that thread without the lock.
Yes it seems the same case, `mNextRandomAccessPoint` would only be modified on the task queue, so it's safe to simply read its value without using lock on the task queue. We could have a better comment for that.
Bug 1742388 Comment 1 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
> It's possible that like mManager, it can only be modified on the TaskQueue thread, in which case it is safe to read it on that thread without the lock.
Yes it seems the same case, `mNextRandomAccessPoint` would only be modified on the task queue, so it's safe to simply read its value without using lock on the task queue. We could have a better comment for that.