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

Unified Diff: ash/wm/native_cursor_manager_ash_mus.h

Issue 2932563002: Implement cursor changing on Mushrome (Closed)
Patch Set: oshima patch take 2 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 | « ash/wm/native_cursor_manager_ash_interactive_uitest.cc ('k') | ash/wm/native_cursor_manager_ash_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/native_cursor_manager_ash_mus.h
diff --git a/ash/wm/native_cursor_manager_ash_mus.h b/ash/wm/native_cursor_manager_ash_mus.h
new file mode 100644
index 0000000000000000000000000000000000000000..58a9e81a9ddfac3fa0198439786077395bb81311
--- /dev/null
+++ b/ash/wm/native_cursor_manager_ash_mus.h
@@ -0,0 +1,67 @@
+// Copyright 2017 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.
+
+#ifndef ASH_WM_NATIVE_CURSOR_MANAGER_ASH_MUS_H_
+#define ASH_WM_NATIVE_CURSOR_MANAGER_ASH_MUS_H_
+
+#include "ash/wm/native_cursor_manager_ash.h"
+
+namespace ui {
+class CursorDataFactoryOzone;
+class ImageCursors;
+} // namespace ui
+
+namespace ash {
+
+// An NativeCursorManagerAsh which is used in Mushrome mode.
+//
+// NativeCursorManagerAshClassic implicitly communicates with ozone via
+// ImageCursors and the window tree host, but in mushrome, we want to
+// communicate with the window server purely through the mus interfaces.
+//
+// This doesn't mean that we can just cut out all ozone communication; we'll
+// have to do what the mash does, which is install just the cursor factory part
+// of ozone.
+class ASH_EXPORT NativeCursorManagerAshMus : public NativeCursorManagerAsh {
+ public:
+ NativeCursorManagerAshMus();
+ ~NativeCursorManagerAshMus() override;
+
+ private:
+ // Overridden from NativeCursorManagerAsh:
+ void SetNativeCursorEnabled(bool enabled) override;
+ float GetScale() const override;
+ display::Display::Rotation GetRotation() const override;
+
+ // Overridden from ::wm::NativeCursorManager:
+ void SetDisplay(const display::Display& display,
+ ::wm::NativeCursorManagerDelegate* delegate) override;
+ void SetCursor(gfx::NativeCursor cursor,
+ ::wm::NativeCursorManagerDelegate* delegate) override;
+ void SetVisibility(bool visible,
+ ::wm::NativeCursorManagerDelegate* delegate) override;
+ void SetCursorSet(ui::CursorSetType cursor_set,
+ ::wm::NativeCursorManagerDelegate* delegate) override;
+ void SetMouseEventsEnabled(
+ bool enabled,
+ ::wm::NativeCursorManagerDelegate* delegate) override;
+
+ // The cursor location where the cursor was disabled.
+ gfx::Point disabled_cursor_location_;
+
+ bool native_cursor_enabled_ = true;
+
+#if defined(USE_OZONE)
+ std::unique_ptr<ui::CursorDataFactoryOzone> cursor_factory_ozone_;
+#endif
+
+ // Always nullptr when USE_OZONE is false.
+ std::unique_ptr<::ui::ImageCursors> image_cursors_;
+
+ DISALLOW_COPY_AND_ASSIGN(NativeCursorManagerAshMus);
+};
+
+} // namespace ash
+
+#endif // ASH_WM_NATIVE_CURSOR_MANAGER_ASH_MUS_H_
« no previous file with comments | « ash/wm/native_cursor_manager_ash_interactive_uitest.cc ('k') | ash/wm/native_cursor_manager_ash_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698