actively_scrolling_type.h 411 B

123456789101112131415161718
  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 CC_INPUT_ACTIVELY_SCROLLING_TYPE_H_
  5. #define CC_INPUT_ACTIVELY_SCROLLING_TYPE_H_
  6. namespace cc {
  7. enum class ActivelyScrollingType {
  8. kNone,
  9. kPrecise,
  10. kAnimated,
  11. };
  12. } // namespace cc
  13. #endif // CC_INPUT_ACTIVELY_SCROLLING_TYPE_H_