#ifndef UI_LOTTIE_RESOURCE_H_
#define UI_LOTTIE_RESOURCE_H_
#include <stdint.h>
#include <vector>
#include "base/component_export.h"
#include "build/chromeos_buildflags.h"
namespace gfx {
class ImageSkia;
}
namespace ui {
class ImageModel;
}
namespace lottie {
COMPONENT_EXPORT(UI_LOTTIE)
gfx::ImageSkia ParseLottieAsStillImage(std::vector<uint8_t> data);
#if BUILDFLAG(IS_CHROMEOS_ASH)
COMPONENT_EXPORT(UI_LOTTIE)
ui::ImageModel ParseLottieAsThemedStillImage(std::vector<uint8_t> data);
#endif
}
#endif