// Copyright 2023 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_VIEWS_COREWM_TOOLTIP_VIEW_AURA_H_ #define UI_VIEWS_COREWM_TOOLTIP_VIEW_AURA_H_ #include <memory> #include "ui/base/metadata/metadata_header_macros.h" #include "ui/gfx/font_list.h" #include "ui/gfx/render_text.h" #include "ui/views/view.h" #include "ui/views/views_export.h" namespace views::corewm { // The contents view for tooltip widget on aura platforms. // TODO(oshima): Consider to use views::Label when the performance issue is // resolved. class VIEWS_EXPORT TooltipViewAura : public views::View { … }; } // namespace views::corewm #endif // UI_VIEWS_COREWM_TOOLTIP_VIEW_AURA_H_