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

Unified Diff: ui/views/corewm/cursor_manager.h

Issue 12263050: Rework ash::CursorManager into a corewm object, to share code with desktop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: General patch cleanup. Created 7 years, 10 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/views/corewm/cursor_manager.h
diff --git a/ash/wm/cursor_manager.h b/ui/views/corewm/cursor_manager.h
similarity index 56%
rename from ash/wm/cursor_manager.h
rename to ui/views/corewm/cursor_manager.h
index 774e4505082a66cde4a07f648688303a4ff82f65..8ddd598c18c88d92fb83c5154d5bd92c14772822 100644
--- a/ash/wm/cursor_manager.h
+++ b/ui/views/corewm/cursor_manager.h
@@ -1,36 +1,34 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Copyright (c) 2013 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_CURSOR_MANAGER_H_
-#define ASH_WM_CURSOR_MANAGER_H_
+#ifndef UI_VIEWS_COREWM_CURSOR_MANAGER_H_
+#define UI_VIEWS_COREWM_CURSOR_MANAGER_H_
-#include "ash/ash_export.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "ui/aura/client/cursor_client.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/gfx/point.h"
+#include "ui/views/corewm/cursor_manager_delegate.h"
+#include "ui/views/views_export.h"
-namespace ash {
+namespace views {
+namespace corewm {
namespace internal {
class CursorState;
}
-namespace test {
-class CursorManagerTestApi;
-}
-
-class ImageCursors;
+class CursorPlatformDelegate;
-// This class controls the visibility and the type of the cursor.
-// The cursor type can be locked so that the type stays the same
-// until it's unlocked.
-class ASH_EXPORT CursorManager : public aura::client::CursorClient {
+// This class controls the visibility and the type of the cursor. The cursor
+// type can be locked so that the type stays the same until it's unlocked.
+class VIEWS_EXPORT CursorManager : public aura::client::CursorClient,
+ public CursorManagerDelegate {
Ben Goodger (Google) 2013/02/22 18:00:06 It is confusing to me that you have a class Cursor
Elliot Glaysher 2013/02/22 18:40:07 In the previous implementation, if you wanted to m
public:
- CursorManager();
+ CursorManager(scoped_ptr<CursorPlatformDelegate> delegate);
virtual ~CursorManager();
bool is_cursor_locked() const { return cursor_lock_count_ > 0; }
@@ -48,33 +46,30 @@ class ASH_EXPORT CursorManager : public aura::client::CursorClient {
virtual void UnlockCursor() OVERRIDE;
private:
- friend class test::CursorManagerTestApi;
-
- void SetCursorInternal(gfx::NativeCursor cursor);
- void SetCursorVisibility(bool visible);
- void SetMouseEventsEnabled(bool enabled);
+ // Overridden from CursorManagerDelegate:
+ virtual gfx::NativeCursor GetCurrentCursor() const OVERRIDE;
+ virtual bool GetCurrentVisibility() const OVERRIDE;
+ virtual bool GetMouseEventsEnabled() const OVERRIDE;
+ virtual void CommitCursor(gfx::NativeCursor cursor) OVERRIDE;
+ virtual void CommitVisibility(bool visible) OVERRIDE;
+ virtual void CommitMouseEventsEnabled(bool enabled) OVERRIDE;
- // Returns the current cursor.
- gfx::NativeCursor GetCurrentCursor() const;
+ scoped_ptr<CursorPlatformDelegate> delegate_;
// Number of times LockCursor() has been invoked without a corresponding
// UnlockCursor().
int cursor_lock_count_;
- // The cursor location where the cursor was disabled.
- gfx::Point disabled_cursor_location_;
-
// The current state of the cursor.
scoped_ptr<internal::CursorState> current_state_;
// The cursor state to restore when the cursor is unlocked.
scoped_ptr<internal::CursorState> state_on_unlock_;
- scoped_ptr<ImageCursors> image_cursors_;
-
DISALLOW_COPY_AND_ASSIGN(CursorManager);
};
-} // namespace ash
+} // namespace corewm
+} // namespace views
-#endif // UI_AURA_CURSOR_MANAGER_H_
+#endif // UI_VIEWS_COREWM_CURSOR_MANAGER_H_
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc ('k') | ui/views/corewm/cursor_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698