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

Unified Diff: ui/wm/test/testing_cursor_client_observer.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
« services/ui/ws/display.h ('K') | « ui/wm/test/testing_cursor_client_observer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« services/ui/ws/display.h ('K') | « ui/wm/test/testing_cursor_client_observer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698