// Copyright 2016 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_SELECTION_CONTROLLER_H_ #define UI_VIEWS_SELECTION_CONTROLLER_H_ #include "base/memory/raw_ptr.h" #include "base/time/time.h" #include "base/timer/timer.h" #include "ui/gfx/geometry/point.h" #include "ui/gfx/range/range.h" #include "ui/gfx/selection_model.h" #include "ui/views/views_export.h" namespace gfx { class RenderText; } namespace ui { class MouseEvent; } namespace views { class SelectionControllerDelegate; // Helper class used to facilitate mouse event handling and text selection. To // use, clients must implement the SelectionControllerDelegate interface. // TODO(karandeepb): Also make this class handle gesture events. class VIEWS_EXPORT SelectionController { … }; } // namespace views #endif // UI_VIEWS_SELECTION_CONTROLLER_H_