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

Unified Diff: services/ui/ws/display.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: services/ui/ws/display.cc
diff --git a/services/ui/ws/display.cc b/services/ui/ws/display.cc
index a355f1905393a6a2d77b9fac748c62e416e5b361..e49d7e6c61369812b8d52f76da89d0ec3646cec7 100644
--- a/services/ui/ws/display.cc
+++ b/services/ui/ws/display.cc
@@ -202,6 +202,10 @@ void Display::SetNativeCursor(const ui::CursorData& cursor) {
platform_display_->SetCursor(cursor);
}
+void Display::SetNativeCursorSet(const ui::CursorSet& cursor_set) {
+ platform_display_->SetCursorSet(cursor_set);
+}
+
void Display::SetSize(const gfx::Size& size) {
platform_display_->SetViewportSize(size);
}

Powered by Google App Engine
This is Rietveld 408576698