// Copyright 2023 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_TEST_MOCK_DRAG_CONTROLLER_H_ #define UI_VIEWS_TEST_MOCK_DRAG_CONTROLLER_H_ #include "ui/views/drag_controller.h" #include "testing/gmock/include/gmock/gmock.h" namespace gfx { class Point; } // namespace gfx namespace ui { class OSExchangeData; } // namespace ui namespace views { class View; // A mocked drag controller for testing. class MockDragController : public DragController { … }; } // namespace views #endif // UI_VIEWS_TEST_MOCK_DRAG_CONTROLLER_H_