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

Unified Diff: ui/aura/test/test_cursor_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/test/test_cursor_client.cc
diff --git a/ui/aura/test/test_cursor_client.cc b/ui/aura/test/test_cursor_client.cc
index 72f3a05697559b4de0116464c610e177cff503dc..c0088f071e2ff969ebae60d99a05e27ccc2ce73c 100644
--- a/ui/aura/test/test_cursor_client.cc
+++ b/ui/aura/test/test_cursor_client.cc
@@ -44,11 +44,10 @@ void TestCursorClient::HideCursor() {
observer.OnCursorVisibilityChanged(false);
}
-void TestCursorClient::SetCursorSet(ui::CursorSetType cursor_set) {
-}
+void TestCursorClient::SetCursorSet(ui::CursorSet cursor_set) {}
-ui::CursorSetType TestCursorClient::GetCursorSet() const {
- return ui::CURSOR_SET_NORMAL;
+ui::CursorSet TestCursorClient::GetCursorSet() const {
+ return ui::CursorSet::kNormal;
}
bool TestCursorClient::IsCursorVisible() const {

Powered by Google App Engine
This is Rietveld 408576698