| Index: content/common/cursors/webcursor_aurawin.cc
|
| diff --git a/content/common/cursors/webcursor_aurawin.cc b/content/common/cursors/webcursor_aurawin.cc
|
| index b8b4c575c28965afe770f1137fbc917da3033dc3..e379cfa44c95e436a1702ee7e5dea6a8c74931a4 100644
|
| --- a/content/common/cursors/webcursor_aurawin.cc
|
| +++ b/content/common/cursors/webcursor_aurawin.cc
|
| @@ -37,6 +37,7 @@ ui::PlatformCursor WebCursor::GetPlatformCursor() {
|
|
|
| void WebCursor::InitPlatformData() {
|
| custom_cursor_ = NULL;
|
| + device_scale_factor_ = 1.f;
|
| }
|
|
|
| bool WebCursor::SerializePlatformData(base::Pickle* pickle) const {
|
| @@ -59,6 +60,7 @@ void WebCursor::CleanupPlatformData() {
|
| }
|
|
|
| void WebCursor::CopyPlatformData(const WebCursor& other) {
|
| + device_scale_factor_ = other.device_scale_factor_;
|
| }
|
|
|
| } // namespace content
|
|
|