31 lines
898 B
C++
31 lines
898 B
C++
// Copyright 2020 The Chromium Embedded Framework Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "libcef/browser/native/cursor_util.h"
|
|
|
|
#include "ui/ozone/buildflags.h"
|
|
|
|
#if BUILDFLAG(OZONE_PLATFORM_X11)
|
|
#include "ui/base/x/x11_cursor.h"
|
|
#elif defined(USE_OZONE)
|
|
#include "ui/ozone/common/bitmap_cursor.h"
|
|
#endif
|
|
|
|
namespace cursor_util {
|
|
|
|
cef_cursor_handle_t ToCursorHandle(scoped_refptr<ui::PlatformCursor> cursor) {
|
|
#if BUILDFLAG(OZONE_PLATFORM_X11)
|
|
// See https://crbug.com/1029142 for background.
|
|
return static_cast<cef_cursor_handle_t>(
|
|
ui::X11Cursor::FromPlatformCursor(cursor)->xcursor());
|
|
#elif defined(USE_OZONE)
|
|
return static_cast<cef_cursor_handle_t>(
|
|
ui::BitmapCursor::FromPlatformCursor(cursor)->platform_data());
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
} // namespace cursor_util
|