| Index: ui/aura/root_window_host_linux.cc
|
| diff --git a/ui/aura/root_window_host_linux.cc b/ui/aura/root_window_host_linux.cc
|
| index 57f6394bfef26de22d21c9eb358a00656ce8303b..d3da5a62e08e087c8ad1d805106a74a06f5fced7 100644
|
| --- a/ui/aura/root_window_host_linux.cc
|
| +++ b/ui/aura/root_window_host_linux.cc
|
| @@ -550,6 +550,11 @@ void RootWindowHostLinux::SetCursor(gfx::NativeCursor cursor) {
|
| SetCursorInternal(cursor);
|
| }
|
|
|
| +void RootWindowHostLinux::SetCustomCursor(const gfx::PlatformCursor& cursor) {
|
| + if (cursor_shown_)
|
| + XDefineCursor(xdisplay_, xwindow_, cursor);
|
| +}
|
| +
|
| void RootWindowHostLinux::ShowCursor(bool show) {
|
| if (show == cursor_shown_)
|
| return;
|
|
|