chromium/third_party/blink/renderer/platform/widget/input/cursor_control_handler.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/platform/widget/input/cursor_control_handler.h"

#include "third_party/blink/public/common/input/web_gesture_event.h"

namespace blink {

std::optional<InputHandlerProxy::EventDisposition>
CursorControlHandler::ObserveInputEvent(const WebInputEvent& event) {}

std::optional<InputHandlerProxy::EventDisposition>
CursorControlHandler::HandleGestureScrollBegin(const WebGestureEvent& event) {}

std::optional<InputHandlerProxy::EventDisposition>
CursorControlHandler::HandleGestureScrollUpdate(const WebGestureEvent& event) {}

std::optional<InputHandlerProxy::EventDisposition>
CursorControlHandler::HandleGestureScrollEnd(const WebGestureEvent& event) {}

}  // namespace blink