skottie_marker.h 536 B

12345678910111213141516171819202122
  1. // Copyright 2022 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_PAINT_SKOTTIE_MARKER_H_
  5. #define CC_PAINT_SKOTTIE_MARKER_H_
  6. #include <string>
  7. namespace cc {
  8. // See the skottie::MarkerObserver API for details. The arguments there are
  9. // replicated here verbatim.
  10. struct CC_PAINT_EXPORT SkottieMarker {
  11. std::string name;
  12. float begin_time;
  13. float end_time;
  14. };
  15. } // namespace cc
  16. #endif // CC_PAINT_SKOTTIE_MARKER_H_