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

Unified Diff: ui/aura/mus/window_tree_client.cc

Issue 2949353003: Implement large cursors in Mushrome. (Closed)
Patch Set: Remove old cursor.h includes. 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 side-by-side diff with in-line comments
Download patch
Index: ui/aura/mus/window_tree_client.cc
diff --git a/ui/aura/mus/window_tree_client.cc b/ui/aura/mus/window_tree_client.cc
index b69d69d4946900ce46897ad5dd44e1af744499e9..c26005c877852e20a27fc938721cb4a6ffe678f2 100644
--- a/ui/aura/mus/window_tree_client.cc
+++ b/ui/aura/mus/window_tree_client.cc
@@ -1884,6 +1884,11 @@ void WindowTreeClient::SetCursorVisible(bool visible) {
window_manager_client_->WmSetCursorVisible(visible);
}
+void WindowTreeClient::SetCursorSet(ui::CursorSet cursor_set) {
+ if (window_manager_client_)
+ window_manager_client_->WmSetCursorSet(cursor_set);
+}
+
void WindowTreeClient::SetGlobalOverrideCursor(
base::Optional<ui::CursorData> cursor) {
if (window_manager_client_)

Powered by Google App Engine
This is Rietveld 408576698