update auto generated file

This commit is contained in:
Daisuke Akatsuka 2017-08-07 14:22:52 +09:00
parent 73dfc28413
commit b50f2d6bc9

View file

@ -967,6 +967,31 @@ extern "C" {
pub fn Gecko_CopyCounterStyle(dst: *mut CounterStylePtr, pub fn Gecko_CopyCounterStyle(dst: *mut CounterStylePtr,
src: *const CounterStylePtr); src: *const CounterStylePtr);
} }
extern "C" {
pub fn Gecko_CounterStyle_IsNone(ptr: *const CounterStylePtr) -> bool;
}
extern "C" {
pub fn Gecko_CounterStyle_IsName(ptr: *const CounterStylePtr) -> bool;
}
extern "C" {
pub fn Gecko_CounterStyle_GetName(ptr: *const CounterStylePtr,
result: *mut nsAString);
}
extern "C" {
pub fn Gecko_CounterStyle_GetSymbols(ptr: *const CounterStylePtr)
-> *const nsTArray<nsStringRepr>;
}
extern "C" {
pub fn Gecko_CounterStyle_GetSystem(ptr: *const CounterStylePtr) -> u8;
}
extern "C" {
pub fn Gecko_CounterStyle_IsSingleString(ptr: *const CounterStylePtr)
-> bool;
}
extern "C" {
pub fn Gecko_CounterStyle_GetSingleString(ptr: *const CounterStylePtr,
result: *mut nsAString);
}
extern "C" { extern "C" {
pub fn Gecko_SetNullImageValue(image: *mut nsStyleImage); pub fn Gecko_SetNullImageValue(image: *mut nsStyleImage);
} }
@ -1865,9 +1890,6 @@ extern "C" {
extern "C" { extern "C" {
pub fn Gecko_Destroy_nsStyleEffects(ptr: *mut nsStyleEffects); pub fn Gecko_Destroy_nsStyleEffects(ptr: *mut nsStyleEffects);
} }
extern "C" {
pub fn Gecko_Construct_nsStyleVariables(ptr: *mut nsStyleVariables);
}
extern "C" { extern "C" {
pub fn Gecko_RegisterProfilerThread(name: *const ::std::os::raw::c_char); pub fn Gecko_RegisterProfilerThread(name: *const ::std::os::raw::c_char);
} }