Chromium Code Reviews| 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); |
|
tdanderson
2014/04/22 17:28:10
Was this dead code? I don't see any calls to SetSc
oshima
2014/04/23 01:47:11
Yes, it was.
|
| - |
| // 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); |