| Index: services/ui/ws/event_dispatcher.cc
|
| diff --git a/services/ui/ws/event_dispatcher.cc b/services/ui/ws/event_dispatcher.cc
|
| index a4710dfa3d945d2056eb84f9d6bcbb12d27c9dcc..9edd3bc90b7ef2edb788d2564a9a61b29822aee6 100644
|
| --- a/services/ui/ws/event_dispatcher.cc
|
| +++ b/services/ui/ws/event_dispatcher.cc
|
| @@ -91,13 +91,13 @@ ui::mojom::CursorType EventDispatcher::GetCurrentMouseCursor() const {
|
| return drag_controller_->current_cursor();
|
|
|
| if (!mouse_cursor_source_window_)
|
| - return ui::mojom::CursorType::POINTER;
|
| + return ui::mojom::CursorType::kPointer;
|
|
|
| if (mouse_cursor_in_non_client_area_)
|
| return mouse_cursor_source_window_->non_client_cursor();
|
|
|
| const ServerWindow* window = GetWindowForMouseCursor();
|
| - return window ? window->cursor() : ui::mojom::CursorType::POINTER;
|
| + return window ? window->cursor() : ui::mojom::CursorType::kPointer;
|
| }
|
|
|
| bool EventDispatcher::SetCaptureWindow(ServerWindow* window,
|
|
|