Index: ui/wm/test/testing_cursor_client_observer.cc |
diff --git a/ui/wm/test/testing_cursor_client_observer.cc b/ui/wm/test/testing_cursor_client_observer.cc |
index 00d4e1b3c65bf0523239978820e1126f92000c3a..143b13321b64b9c6c2fe54b2519419a9f09885f6 100644 |
--- a/ui/wm/test/testing_cursor_client_observer.cc |
+++ b/ui/wm/test/testing_cursor_client_observer.cc |
@@ -9,12 +9,12 @@ namespace wm { |
TestingCursorClientObserver::TestingCursorClientObserver() |
: cursor_visibility_(false), |
did_visibility_change_(false), |
- cursor_set_(ui::CURSOR_SET_NORMAL), |
+ cursor_set_(ui::CursorSet::kNormal), |
did_cursor_set_change_(false) {} |
void TestingCursorClientObserver::reset() { |
cursor_visibility_ = did_visibility_change_ = false; |
- cursor_set_ = ui::CURSOR_SET_NORMAL; |
+ cursor_set_ = ui::CursorSet::kNormal; |
did_cursor_set_change_ = false; |
} |
@@ -23,8 +23,7 @@ void TestingCursorClientObserver::OnCursorVisibilityChanged(bool is_visible) { |
did_visibility_change_ = true; |
} |
-void TestingCursorClientObserver::OnCursorSetChanged( |
- ui::CursorSetType cursor_set) { |
+void TestingCursorClientObserver::OnCursorSetChanged(ui::CursorSet cursor_set) { |
cursor_set_ = cursor_set; |
did_cursor_set_change_ = true; |
} |