Add RawGeckoComputedKeyframeValuesList in build_gecko.rs.

This commit is contained in:
Hiroyuki Ikezoe 2017-02-23 10:28:41 +09:00
parent be29e8db00
commit b45e3f1011
4 changed files with 28 additions and 0 deletions

View file

@ -25443,6 +25443,8 @@ pub mod root {
pub type RawGeckoDocument = root::nsIDocument;
pub type RawGeckoPresContext = root::nsPresContext;
pub type RawGeckoKeyframeList = root::nsTArray<root::mozilla::Keyframe>;
pub type RawGeckoComputedKeyframeValuesList =
root::nsTArray<root::nsTArray<root::mozilla::PropertyStyleAnimationValuePair>>;
pub type RawGeckoAnimationValueList =
root::nsTArray<root::mozilla::PropertyStyleAnimationValuePair>;
pub type RawServoAnimationValueBorrowedList =
@ -25462,6 +25464,9 @@ pub mod root {
*const root::RawServoAnimationValueBorrowedList;
pub type RawGeckoKeyframeListBorrowedMut =
*mut root::RawGeckoKeyframeList;
pub type RawGeckoKeyframeListBorrowed = *const root::RawGeckoKeyframeList;
pub type RawGeckoComputedKeyframeValuesListBorrowedMut =
*mut root::RawGeckoComputedKeyframeValuesList;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct ElementRuleProcessorData([u8; 0]);