// 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_ACTIONS_ACTION_VIEW_INTERFACE_H_ #define UI_VIEWS_ACTIONS_ACTION_VIEW_INTERFACE_H_ #include "base/functional/callback.h" #include "base/functional/callback_forward.h" #include "ui/actions/actions.h" #include "ui/views/views_export.h" namespace actions { class ActionItem; } namespace views { // See README.md for how to create an ActionViewInterface. class VIEWS_EXPORT ActionViewInterface { … }; } // namespace views #endif // UI_VIEWS_ACTIONS_ACTION_VIEW_INTERFACE_H_