chromium/content/common/cursors/webcursor_aura.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/check_op.h"
#include "build/build_config.h"
#include "content/common/cursors/webcursor.h"
#include "ui/base/cursor/cursor.h"
#include "ui/base/cursor/cursor_factory.h"
#include "ui/base/cursor/mojom/cursor_type.mojom-shared.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "ui/wm/core/cursor_util.h"

namespace content {

gfx::NativeCursor WebCursor::GetNativeCursor() {}

#if !BUILDFLAG(IS_CHROMEOS_ASH)
// Ash has its own UpdateDisplayInfoForWindow that takes rotation into account.
void WebCursor::UpdateDisplayInfoForWindow(aura::Window* window) {}

// Ash also has extra calculations for scale factor (taking max cursor size
// into account).
float WebCursor::GetCursorScaleFactor(SkBitmap* bitmap) {}
#endif

}  // namespace content