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

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

Issue 2071553002: Initial support of large mouse cursor on Exosphere (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add dependency to wm::test_support from ash::unittests 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
« no previous file with comments | « ui/wm/test/testing_cursor_client_observer.h ('k') | ui/wm/wm.gyp » ('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.cc
diff --git a/ui/wm/test/testing_cursor_client_observer.cc b/ui/wm/test/testing_cursor_client_observer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..00d4e1b3c65bf0523239978820e1126f92000c3a
--- /dev/null
+++ b/ui/wm/test/testing_cursor_client_observer.cc
@@ -0,0 +1,32 @@
+// 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/wm/test/testing_cursor_client_observer.h"
+
+namespace wm {
+
+TestingCursorClientObserver::TestingCursorClientObserver()
+ : cursor_visibility_(false),
+ did_visibility_change_(false),
+ cursor_set_(ui::CURSOR_SET_NORMAL),
+ did_cursor_set_change_(false) {}
+
+void TestingCursorClientObserver::reset() {
+ cursor_visibility_ = did_visibility_change_ = false;
+ cursor_set_ = ui::CURSOR_SET_NORMAL;
+ did_cursor_set_change_ = false;
+}
+
+void TestingCursorClientObserver::OnCursorVisibilityChanged(bool is_visible) {
+ cursor_visibility_ = is_visible;
+ did_visibility_change_ = true;
+}
+
+void TestingCursorClientObserver::OnCursorSetChanged(
+ ui::CursorSetType cursor_set) {
+ cursor_set_ = cursor_set;
+ did_cursor_set_change_ = true;
+}
+
+} // namespace wm
« no previous file with comments | « ui/wm/test/testing_cursor_client_observer.h ('k') | ui/wm/wm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698