From 68be131165d950ab80aa6e904f0df7f9b2ff24fa Mon Sep 17 00:00:00 2001 From: Hiroyuki Ikezoe Date: Thu, 6 Apr 2017 10:02:27 +0900 Subject: [PATCH] Move AnimationPropertySegment in a separate header and expose it in FFI. This will be used for animation value composition in Rust. --- components/style/build_gecko.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/style/build_gecko.rs b/components/style/build_gecko.rs index fa7142b69a2..b8a76dab3d9 100644 --- a/components/style/build_gecko.rs +++ b/components/style/build_gecko.rs @@ -273,6 +273,7 @@ mod bindings { .include(add_include("gfxFontConstants.h")) .include(add_include("nsThemeConstants.h")) .include(add_include("mozilla/dom/AnimationEffectReadOnlyBinding.h")) + .include(add_include("mozilla/AnimationPropertySegment.h")) .include(add_include("mozilla/Keyframe.h")) .include(add_include("mozilla/ServoElementSnapshot.h")) .include(add_include("mozilla/dom/Element.h")) @@ -308,6 +309,7 @@ mod bindings { ]; let whitelist = [ "RawGecko.*", + "mozilla::AnimationPropertySegment", "mozilla::ServoStyleSheet", "mozilla::ServoElementSnapshot.*", "mozilla::CSSPseudoClassType",