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

Unified Diff: ui/base/cursor/cursor_loader.h

Issue 249303002: Revert of Use platform's device scale factor for cursor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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: ui/base/cursor/cursor_loader.h
diff --git a/ui/base/cursor/cursor_loader.h b/ui/base/cursor/cursor_loader.h
index 0e16237a37e2a3ed5d941fd697289fe6a12dd354..8526e29d3e580491fcbf0eccd6cb67401e011715 100644
--- a/ui/base/cursor/cursor_loader.h
+++ b/ui/base/cursor/cursor_loader.h
@@ -19,12 +19,14 @@
CursorLoader() : scale_(1.f) {}
virtual ~CursorLoader() {}
- gfx::Display::Rotation rotation() const {
- return rotation_;
+ // Returns the display the loader loads images for.
+ const gfx::Display& display() const {
+ return display_;
}
- void set_rotation(gfx::Display::Rotation rotation) {
- rotation_ = rotation;
+ // Sets the display the loader loads images for.
+ void set_display(const gfx::Display& display) {
+ display_ = display;
}
// Returns the current scale of the mouse cursor icon.
@@ -62,8 +64,8 @@
static CursorLoader* Create();
private:
- // The current rotation of the mouse cursor icon.
- gfx::Display::Rotation rotation_;
+ // The display the loader loads images for.
+ gfx::Display display_;
// The current scale of the mouse cursor icon.
float scale_;
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc ('k') | ui/base/cursor/cursor_loader_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698