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

Unified Diff: ui/wm/test/testing_cursor_client_observer.h

Issue 2949353003: Implement large cursors in Mushrome. (Closed)
Patch Set: rename everything to CursorSize 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
« no previous file with comments | « ui/wm/core/native_cursor_manager_delegate.h ('k') | ui/wm/test/testing_cursor_client_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/wm/test/testing_cursor_client_observer.h
diff --git a/ui/wm/test/testing_cursor_client_observer.h b/ui/wm/test/testing_cursor_client_observer.h
index 1b0bb203e9acb63c6aabc04e35115f16fccaa392..26989353469a7809b57c4c203205a36d4ab94387 100644
--- a/ui/wm/test/testing_cursor_client_observer.h
+++ b/ui/wm/test/testing_cursor_client_observer.h
@@ -15,18 +15,18 @@ class TestingCursorClientObserver : public aura::client::CursorClientObserver {
bool is_cursor_visible() const { return cursor_visibility_; }
bool did_visibility_change() const { return did_visibility_change_; }
- ui::CursorSetType cursor_set() const { return cursor_set_; }
- bool did_cursor_set_change() const { return did_cursor_set_change_; }
+ ui::CursorSize cursor_size() const { return cursor_size_; }
+ bool did_cursor_size_change() const { return did_cursor_size_change_; }
// Overridden from aura::client::CursorClientObserver:
void OnCursorVisibilityChanged(bool is_visible) override;
- void OnCursorSetChanged(ui::CursorSetType cursor_set) override;
+ void OnCursorSizeChanged(ui::CursorSize cursor_size) override;
private:
bool cursor_visibility_;
bool did_visibility_change_;
- ui::CursorSetType cursor_set_;
- bool did_cursor_set_change_;
+ ui::CursorSize cursor_size_;
+ bool did_cursor_size_change_;
DISALLOW_COPY_AND_ASSIGN(TestingCursorClientObserver);
};
« no previous file with comments | « ui/wm/core/native_cursor_manager_delegate.h ('k') | ui/wm/test/testing_cursor_client_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698