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

Unified Diff: ui/aura/client/cursor_client_observer.h

Issue 2071553002: Initial support of large mouse cursor on Exosphere (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for comment #13 Created 4 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/client/cursor_client_observer.h
diff --git a/ui/aura/client/cursor_client_observer.h b/ui/aura/client/cursor_client_observer.h
index 1a6d1a83048ea4025f9d46582bed6ea8270dc0c9..099322fbea55f23d87d3a9906fda1c19850fabe8 100644
--- a/ui/aura/client/cursor_client_observer.h
+++ b/ui/aura/client/cursor_client_observer.h
@@ -6,13 +6,15 @@
#define UI_AURA_CLIENT_CURSOR_CLIENT_OBSERVER_H_
#include "ui/aura/aura_export.h"
+#include "ui/base/cursor/cursor.h"
namespace aura {
namespace client {
class AURA_EXPORT CursorClientObserver {
public:
- virtual void OnCursorVisibilityChanged(bool is_visible) = 0;
+ virtual void OnCursorVisibilityChanged(bool is_visible) {};
+ virtual void OnCursorSetChanged(ui::CursorSetType cursor_set) {};
sky 2016/06/20 15:27:51 nit: no ';' here and previous line.
yoshiki 2016/06/28 02:12:42 Done.
protected:
virtual ~CursorClientObserver() {}

Powered by Google App Engine
This is Rietveld 408576698