scroll_input_type.h 459 B

1234567891011121314151617181920
  1. // Copyright 2020 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_EVENTS_TYPES_SCROLL_INPUT_TYPE_H_
  5. #define UI_EVENTS_TYPES_SCROLL_INPUT_TYPE_H_
  6. namespace ui {
  7. enum class ScrollInputType {
  8. kTouchscreen = 0,
  9. kWheel,
  10. kAutoscroll,
  11. kScrollbar,
  12. kMaxValue = kScrollbar,
  13. };
  14. } // namespace ui
  15. #endif // UI_EVENTS_TYPES_SCROLL_INPUT_TYPE_H_