[go: nahoru, domu]

blob: 71bbc17714749aff75c0b6ea7d38b7ad32f8ac9a [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_PAINT_SKOTTIE_MARKER_H_
#define CC_PAINT_SKOTTIE_MARKER_H_
#include <string>
#include "cc/paint/paint_export.h"
namespace cc {
// See the skottie::MarkerObserver API for details. The arguments there are
// replicated here verbatim.
struct CC_PAINT_EXPORT SkottieMarker {
std::string name;
float begin_time;
float end_time;
};
} // namespace cc
#endif // CC_PAINT_SKOTTIE_MARKER_H_