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

Unified Diff: ui/ozone/public/cursor_factory_ozone.cc

Issue 2798883003: [ozone,views-mus] Build CursorDataFactoryOzone. (Closed)
Patch Set: sadrul comments Created 3 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
« no previous file with comments | « ui/ozone/public/cursor_factory_ozone.h ('k') | ui/views/mus/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « ui/ozone/public/cursor_factory_ozone.h ('k') | ui/views/mus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698