// Copyright 2019 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_CONTROLS_BUTTON_BUTTON_CONTROLLER_H_ #define UI_VIEWS_CONTROLS_BUTTON_BUTTON_CONTROLLER_H_ #include <memory> #include "base/memory/raw_ptr.h" #include "ui/events/event.h" #include "ui/views/controls/button/button.h" namespace views { // Handles logic not related to the visual aspects of a Button such as event // handling and state changes. class VIEWS_EXPORT ButtonController { … }; } // namespace views #endif // UI_VIEWS_CONTROLS_BUTTON_BUTTON_CONTROLLER_H_