// 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 CHROME_BROWSER_UI_VIEWS_HOVER_BUTTON_CONTROLLER_H_ #define CHROME_BROWSER_UI_VIEWS_HOVER_BUTTON_CONTROLLER_H_ #include <memory> #include "ui/views/controls/button/button.h" #include "ui/views/controls/button/button_controller.h" namespace views { class ButtonControllerDelegate; } // namespace views class HoverButton; // A controller that contains the logic for a button that's the full width of // its parent. class HoverButtonController : public views::ButtonController { … }; #endif // CHROME_BROWSER_UI_VIEWS_HOVER_BUTTON_CONTROLLER_H_