Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: services/ui/public/interfaces/window_manager.mojom

Issue 2918553003: Implement a MoveCursorToScreenLocation for just the window manager. (Closed)
Patch Set: Thread to the PlatformWindow. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module ui.mojom; 5 module ui.mojom;
6 6
7 import "cc/ipc/frame_sink_id.mojom"; 7 import "cc/ipc/frame_sink_id.mojom";
8 import "cc/ipc/local_surface_id.mojom"; 8 import "cc/ipc/local_surface_id.mojom";
9 import "services/ui/public/interfaces/cursor/cursor.mojom"; 9 import "services/ui/public/interfaces/cursor/cursor.mojom";
10 import "services/ui/public/interfaces/event_matcher.mojom"; 10 import "services/ui/public/interfaces/event_matcher.mojom";
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 WmLockCursor(); 316 WmLockCursor();
317 WmUnlockCursor(); 317 WmUnlockCursor();
318 318
319 // Shows and hides the cursor globally. Used during window management tasks. 319 // Shows and hides the cursor globally. Used during window management tasks.
320 WmSetCursorVisible(bool visible); 320 WmSetCursorVisible(bool visible);
321 321
322 // Sets a global cursor which overrides per-window cursors. Pass null to 322 // Sets a global cursor which overrides per-window cursors. Pass null to
323 // clear. 323 // clear.
324 WmSetGlobalOverrideCursor(CursorData? cursor); 324 WmSetGlobalOverrideCursor(CursorData? cursor);
325 325
326 // Moves the cursor to the given location on the given display.
327 WmMoveCursorToDisplayLocation(gfx.mojom.Point display_pixels,
328 int64 display_id);
329
326 // Response from WmCreateTopLevelWindow() informing the client of the id for 330 // Response from WmCreateTopLevelWindow() informing the client of the id for
327 // the new window. 331 // the new window.
328 OnWmCreatedTopLevelWindow(uint32 change_id, uint32 window_id); 332 OnWmCreatedTopLevelWindow(uint32 change_id, uint32 window_id);
329 333
330 // See description in WindowManager::OnAccelerator(). |ack_id| is the value 334 // See description in WindowManager::OnAccelerator(). |ack_id| is the value
331 // that was passed to OnAccelerator(). If the accelerator is a pre-target 335 // that was passed to OnAccelerator(). If the accelerator is a pre-target
332 // handler and |event_result| is UNHANDLED, then |properties| is added to 336 // handler and |event_result| is UNHANDLED, then |properties| is added to
333 // the KeyEvent that is dispatched to the client with the focused window. 337 // the KeyEvent that is dispatched to the client with the focused window.
334 OnAcceleratorAck(uint32 ack_id, 338 OnAcceleratorAck(uint32 ack_id,
335 EventResult event_result, 339 EventResult event_result,
336 map<string, array<uint8>> properties); 340 map<string, array<uint8>> properties);
337 }; 341 };
OLDNEW
« no previous file with comments | « no previous file | services/ui/ws/platform_display.h » ('j') | services/ui/ws/window_tree_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698