views_touch_selection_controller_factory.h 794 B

12345678910111213141516171819202122232425
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef UI_VIEWS_VIEWS_TOUCH_SELECTION_CONTROLLER_FACTORY_H_
  5. #define UI_VIEWS_VIEWS_TOUCH_SELECTION_CONTROLLER_FACTORY_H_
  6. #include "ui/base/pointer/touch_editing_controller.h"
  7. #include "ui/views/views_export.h"
  8. namespace views {
  9. class VIEWS_EXPORT ViewsTouchEditingControllerFactory
  10. : public ui::TouchEditingControllerFactory {
  11. public:
  12. ViewsTouchEditingControllerFactory();
  13. // Overridden from ui::TouchEditingControllerFactory.
  14. ui::TouchEditingControllerDeprecated* Create(
  15. ui::TouchEditable* client_view) override;
  16. };
  17. } // namespace views
  18. #endif // UI_VIEWS_VIEWS_TOUCH_SELECTION_CONTROLLER_FACTORY_H_