style: Regenerate Gecko bindings.

This commit is contained in:
Cameron McCormack 2017-09-25 16:14:55 +08:00
parent 23d710bc36
commit b1671f1282
4 changed files with 2518 additions and 2029 deletions

View file

@ -1970,7 +1970,8 @@ extern "C" {
result: *mut nsAString);
}
extern "C" {
pub fn Servo_StyleSheet_GetSourceURL(sheet: RawServoStyleSheetContentsBorrowed,
pub fn Servo_StyleSheet_GetSourceURL(sheet:
RawServoStyleSheetContentsBorrowed,
result: *mut nsAString);
}
extern "C" {
@ -2853,6 +2854,9 @@ extern "C" {
extern "C" {
pub fn Servo_Initialize(dummy_url_data: *mut RawGeckoURLExtraData);
}
extern "C" {
pub fn Servo_InitializeCooperativeThread();
}
extern "C" {
pub fn Servo_Shutdown();
}
@ -2971,6 +2975,19 @@ extern "C" {
pub fn Servo_HasPendingRestyleAncestor(element: RawGeckoElementBorrowed)
-> bool;
}
extern "C" {
pub fn Servo_GetArcStringData(arg1: *const RustString,
chars: *mut *const u8, len: *mut u32);
}
extern "C" {
pub fn Servo_ReleaseArcStringData(string:
*const ServoRawOffsetArc<RustString>);
}
extern "C" {
pub fn Servo_CloneArcStringData(string:
*const ServoRawOffsetArc<RustString>)
-> ServoRawOffsetArc<RustString>;
}
extern "C" {
pub fn Gecko_CreateCSSErrorReporter(sheet: *mut ServoStyleSheet,
loader: *mut Loader, uri: *mut nsIURI)