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

Unified Diff: ui/base/cursor/image_cursors.h

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/base/cursor/image_cursors.h
diff --git a/ui/base/cursor/image_cursors.h b/ui/base/cursor/image_cursors.h
index 36e5465697cf32506aff20b979acf55975a1712a..76dfe20f0e11340542eec1c1195e057b8a64c27b 100644
--- a/ui/base/cursor/image_cursors.h
+++ b/ui/base/cursor/image_cursors.h
@@ -34,7 +34,7 @@ class UI_BASE_EXPORT ImageCursors {
bool SetDisplay(const display::Display& display, float scale_factor);
// Sets the type of the mouse cursor icon.
- void SetCursorSet(CursorSetType cursor_set);
+ void SetCursorSet(CursorSet cursor_set);
// Sets the platform cursor based on the native type of |cursor|.
void SetPlatformCursor(gfx::NativeCursor* cursor);
@@ -44,7 +44,7 @@ class UI_BASE_EXPORT ImageCursors {
void ReloadCursors();
std::unique_ptr<CursorLoader> cursor_loader_;
- CursorSetType cursor_set_;
+ CursorSet cursor_set_;
DISALLOW_COPY_AND_ASSIGN(ImageCursors);
};

Powered by Google App Engine
This is Rietveld 408576698