mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-15 03:30:52 +01:00
Switch to using aura::CursorLoader which knows how to load system, non-system and pak cursor resources. On Windows, cursors will be loaded via LoadCursor first if available with a fallback to pak file if necessary (like with component builds). On Linux, all non-system cursor resources will be loaded from pak file. Cursors may be loaded asynchronously resulting in the default (pointer) cursor being returned on the first request.
16 lines
514 B
C++
16 lines
514 B
C++
// Copyright 2020 The Chromium Embedded Framework Authors. Portions copyright
|
|
// 2012 The Chromium 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/base/win/win_cursor.h"
|
|
|
|
namespace cursor_util {
|
|
|
|
cef_cursor_handle_t ToCursorHandle(scoped_refptr<ui::PlatformCursor> cursor) {
|
|
return ui::WinCursor::FromPlatformCursor(cursor)->hcursor();
|
|
}
|
|
|
|
} // namespace cursor_util
|