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

Unified Diff: ui/base/cursor/cursor.cc

Issue 10919135: Move ash specific cursor code to CursorManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests and rebase Created 8 years, 3 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.cc
diff --git a/ui/base/cursor/cursor.cc b/ui/base/cursor/cursor.cc
index e2811bf10e1770ce1abb1fb07cf84756faf3db60..223042e036f2dc667a20f0fdec55b77519a6e306 100644
--- a/ui/base/cursor/cursor.cc
+++ b/ui/base/cursor/cursor.cc
@@ -8,17 +8,20 @@ namespace ui {
Cursor::Cursor()
: native_type_(0),
- platform_cursor_(0) {
+ platform_cursor_(0),
+ device_scale_factor_(0.0f) {
}
Cursor::Cursor(int type)
: native_type_(type),
- platform_cursor_(0) {
+ platform_cursor_(0),
+ device_scale_factor_(0.0f) {
}
Cursor::Cursor(const Cursor& cursor)
: native_type_(cursor.native_type_),
- platform_cursor_(cursor.platform_cursor_) {
+ platform_cursor_(cursor.platform_cursor_),
+ device_scale_factor_(cursor.device_scale_factor_) {
if (native_type_ == kCursorCustom)
RefCustomCursor();
}
@@ -29,22 +32,23 @@ Cursor::~Cursor() {
}
void Cursor::SetPlatformCursor(const PlatformCursor& platform) {
- if (platform_cursor_)
+ if (native_type_ == kCursorCustom)
UnrefCustomCursor();
- native_type_ = kCursorCustom;
sky 2012/09/10 22:49:06 How come you're removing this?
mazda 2012/09/11 00:45:09 Originally the cursor that had non-zero platform_c
platform_cursor_ = platform;
- RefCustomCursor();
+ if (native_type_ == kCursorCustom)
+ RefCustomCursor();
}
void Cursor::Assign(const Cursor& cursor) {
if (*this == cursor)
return;
native_type_ = cursor.native_type_;
- if (platform_cursor_)
+ if (native_type_ == kCursorCustom)
UnrefCustomCursor();
platform_cursor_ = cursor.platform_cursor_;
- if (platform_cursor_)
+ if (native_type_ == kCursorCustom)
RefCustomCursor();
+ device_scale_factor_ = cursor.device_scale_factor_;
}
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698