| Index: ui/ozone/public/cursor_factory_ozone.cc
|
| diff --git a/ui/ozone/public/cursor_factory_ozone.cc b/ui/ozone/public/cursor_factory_ozone.cc
|
| index c7f388dc060d8cac43cfff6bc838a8c53d3c39df..fa075bbff02430be6b13801afdd2e2d9abb61640 100644
|
| --- a/ui/ozone/public/cursor_factory_ozone.cc
|
| +++ b/ui/ozone/public/cursor_factory_ozone.cc
|
| @@ -31,9 +31,9 @@ PlatformCursor CursorFactoryOzone::GetDefaultCursor(int type) {
|
| return NULL;
|
| }
|
|
|
| -PlatformCursor CursorFactoryOzone::CreateImageCursor(
|
| - const SkBitmap& bitmap,
|
| - const gfx::Point& hotspot) {
|
| +PlatformCursor CursorFactoryOzone::CreateImageCursor(const SkBitmap& bitmap,
|
| + const gfx::Point& hotspot,
|
| + float bitmap_dpi) {
|
| NOTIMPLEMENTED();
|
| return NULL;
|
| }
|
| @@ -41,7 +41,8 @@ PlatformCursor CursorFactoryOzone::CreateImageCursor(
|
| PlatformCursor CursorFactoryOzone::CreateAnimatedCursor(
|
| const std::vector<SkBitmap>& bitmaps,
|
| const gfx::Point& hotspot,
|
| - int frame_delay_ms) {
|
| + int frame_delay_ms,
|
| + float bitmap_dpi) {
|
| NOTIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|