summaryrefslogtreecommitdiff
path: root/chromium/ui/events/types/scroll_types.h
blob: 7ff15f0fc5cc13080ac9bd12f4063fc72c8ecb7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_EVENTS_TYPES_SCROLL_TYPES_H_
#define UI_EVENTS_TYPES_SCROLL_TYPES_H_

namespace ui {

enum class ScrollGranularity : uint8_t {
  kScrollByPrecisePixel = 0,
  kFirstScrollGranularity = kScrollByPrecisePixel,
  kScrollByPixel,
  kScrollByLine,
  kScrollByPage,
  kScrollByDocument,
  kScrollByPercentage,
  kMaxValue = kScrollByPercentage
};

}  // namespace ui

#endif  // UI_EVENTS_TYPES_SCROLL_TYPES_H_