Commit 24836dd0 authored by rjkroege's avatar rjkroege Committed by Commit bot

Update thread usage notes in CursorDelegateEvdev

Comments in CursorDelegateEvdev incorrectly specified thread usage
so update appropriately.

BUG=620927

Review-Url: https://codereview.chromium.org/2179123002
Cr-Commit-Position: refs/heads/master@{#407565}
parent 6b1201a2
......@@ -22,10 +22,10 @@ class EVENTS_OZONE_EVDEV_EXPORT CursorDelegateEvdev {
// Move the cursor from the Evdev thread.
virtual void MoveCursor(const gfx::Vector2dF& delta) = 0;
// Move the cursor from the UI thread only.
// Move the cursor from the UI or Evdev (e.g. on a tablet).
virtual void MoveCursorTo(gfx::AcceleratedWidget widget,
const gfx::PointF& location) = 0;
// Move the cursor from the UI thread only.
// Move the cursor from the UI or Evdev thread.
virtual void MoveCursorTo(const gfx::PointF& location) = 0;
// Location in screen. Either thread, IPC-free.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment