chromium/ui/views/controls/button/button_controller_delegate.h

// 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_DELEGATE_H_
#define UI_VIEWS_CONTROLS_BUTTON_BUTTON_CONTROLLER_DELEGATE_H_

#include "base/memory/raw_ptr.h"
#include "ui/views/views_export.h"

namespace gfx {
class Point;
}

namespace ui {
class Event;
}

namespace views {

class Button;
class InkDrop;

// Captures the Button and View methods required for sharing the logic in
// ButtonController between different Button types.
class VIEWS_EXPORT ButtonControllerDelegate {};

}  // namespace views

#endif  // UI_VIEWS_CONTROLS_BUTTON_BUTTON_CONTROLLER_DELEGATE_H_