chromium/ui/base/x/x11_cursor_factory.h

// Copyright 2016 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_BASE_X_X11_CURSOR_FACTORY_H_
#define UI_BASE_X_X11_CURSOR_FACTORY_H_

#include <map>
#include <string>
#include <vector>

#include "base/component_export.h"
#include "base/memory/scoped_refptr.h"
#include "base/scoped_observation.h"
#include "ui/base/cursor/cursor_factory.h"
#include "ui/base/cursor/mojom/cursor_type.mojom-shared.h"
#include "ui/linux/cursor_theme_manager_observer.h"

namespace ui {
class X11Cursor;
class XCursorLoader;

#if BUILDFLAG(IS_LINUX)
class LinuxUi;
#endif

// CursorFactory implementation for X11 cursors.
class COMPONENT_EXPORT(UI_BASE_X) X11CursorFactory
    : public CursorFactory,
      public CursorThemeManagerObserver {};

}  // namespace ui

#endif  // UI_BASE_X_X11_CURSOR_FACTORY_H_