// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_OZONE_COMMON_BITMAP_CURSOR_H_ #define UI_OZONE_COMMON_BITMAP_CURSOR_H_ #include <vector> #include "base/memory/raw_ptr.h" #include "base/memory/scoped_refptr.h" #include "base/time/time.h" #include "third_party/skia/include/core/SkBitmap.h" #include "ui/base/cursor/mojom/cursor_type.mojom-shared.h" #include "ui/base/cursor/platform_cursor.h" #include "ui/gfx/geometry/point.h" namespace ui { // A cursor that is an SkBitmap combined with a gfx::Point hotspot. class BitmapCursor : public PlatformCursor { … }; } // namespace ui #endif // UI_OZONE_COMMON_BITMAP_CURSOR_H_