#ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AURA_H_
#define CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AURA_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "base/timer/timer.h"
#include "content/common/content_export.h"
#include "content/public/browser/touch_selection_controller_client_manager.h"
#include "ui/touch_selection/touch_selection_controller.h"
#include "ui/touch_selection/touch_selection_menu_runner.h"
namespace ui {
class TouchSelectionMagnifierAura;
}
namespace content {
struct ContextMenuParams;
class RenderWidgetHostViewAura;
class CONTENT_EXPORT TouchSelectionControllerClientAura
: public ui::TouchSelectionControllerClient,
public ui::TouchSelectionMenuClient,
public TouchSelectionControllerClientManager { … };
}
#endif