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

Unified Diff: ash/wm/image_cursors.h

Issue 226293005: Use platform's device scale factor for cursor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: new tests Created 6 years, 8 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: ash/wm/image_cursors.h
diff --git a/ash/wm/image_cursors.h b/ash/wm/image_cursors.h
index 55bc34c0c44679063832593fe4e24f5ee94d4fe6..1a75f40a9e3ad14bfedc72e6b3b61f2f508855f2 100644
--- a/ash/wm/image_cursors.h
+++ b/ash/wm/image_cursors.h
@@ -9,12 +9,9 @@
#include "base/memory/scoped_ptr.h"
#include "base/strings/string16.h"
#include "ui/base/cursor/cursor.h"
+#include "ui/gfx/display.h"
#include "ui/gfx/native_widget_types.h"
-namespace gfx {
-class Display;
-}
-
namespace ui {
class CursorLoader;
}
@@ -28,9 +25,9 @@ class ASH_EXPORT ImageCursors {
ImageCursors();
~ImageCursors();
- // Returns the display the cursors are loaded for. The display must
- // be set by SetDisplay before using this.
- gfx::Display GetDisplay() const;
+ // Returns the scale and rotation of the currently loaded cursor.
+ float GetScale() const;
+ gfx::Display::Rotation GetRotation() const;
// Sets the display the cursors are loaded for. The device scale factor
// determines the size of the image to load, and the rotation of the display
@@ -38,9 +35,6 @@ class ASH_EXPORT ImageCursors {
// Returns true if the cursor image is reloaded.
bool SetDisplay(const gfx::Display& display);
- // Sets the scale of the mouse cursor icon.
- void SetScale(float scale);
-
// Sets the type of the mouse cursor icon.
void SetCursorSet(ui::CursorSetType cursor_set);
@@ -52,7 +46,6 @@ class ASH_EXPORT ImageCursors {
void ReloadCursors();
scoped_ptr<ui::CursorLoader> cursor_loader_;
- float scale_;
ui::CursorSetType cursor_set_;
DISALLOW_COPY_AND_ASSIGN(ImageCursors);

Powered by Google App Engine
This is Rietveld 408576698