// 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_H_ #define UI_BASE_X_X11_CURSOR_H_ #include <vector> #include "base/component_export.h" #include "base/functional/callback.h" #include "ui/base/cursor/platform_cursor.h" #include "ui/gfx/x/xproto.h" template <class T> class scoped_refptr; namespace ui { // Ref counted class to hold an X11 cursor resource. Clears the X11 resources // on destruction class COMPONENT_EXPORT(UI_BASE_X) X11Cursor : public PlatformCursor { … }; } // namespace ui #endif // UI_BASE_X_X11_CURSOR_H_