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

Unified Diff: ui/wm/test/testing_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: rebased 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/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
new file mode 100644
index 0000000000000000000000000000000000000000..5f2f504f8999e531ae60ff0c6963a1bb45d6aa9d
--- /dev/null
+++ b/ui/wm/test/testing_cursor_client_observer.h
@@ -0,0 +1,33 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/aura/client/cursor_client_observer.h"
+#include "ui/wm/core/cursor_manager.h"
+
+namespace wm {
+
+class TestingCursorClientObserver : public aura::client::CursorClientObserver {
sky 2016/06/28 16:39:37 Add description.
+ public:
+ TestingCursorClientObserver();
+ void reset();
+
+ 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_; }
+
+ // Overridden from aura::client::CursorClientObserver:
+ void OnCursorVisibilityChanged(bool is_visible) override;
+ void OnCursorSetChanged(ui::CursorSetType cursor_set) override;
+
+ private:
+ bool cursor_visibility_;
+ bool did_visibility_change_;
+ ui::CursorSetType cursor_set_;
+ bool did_cursor_set_change_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestingCursorClientObserver);
+};
+
+} // namespace wm

Powered by Google App Engine
This is Rietveld 408576698