Skip to content

Commit

Permalink
Update bindings.
Browse files Browse the repository at this point in the history
  • Loading branch information
upsuper committed Apr 5, 2018
1 parent 8932dc9 commit a140a70
Show file tree
Hide file tree
Showing 2 changed files with 333 additions and 1,257 deletions.
14 changes: 11 additions & 3 deletions components/style/gecko/generated/bindings.rs
Expand Up @@ -80,7 +80,6 @@ use gecko_bindings::structs::nsCSSFontDesc;
use gecko_bindings::structs::nsCSSKeyword;
use gecko_bindings::structs::nsCSSPropertyID;
use gecko_bindings::structs::nsCSSPropertyIDSet;
use gecko_bindings::structs::nsCSSRect;
use gecko_bindings::structs::nsCSSShadowArray;
use gecko_bindings::structs::nsCSSUnit;
use gecko_bindings::structs::nsCSSValue;
Expand Down Expand Up @@ -192,6 +191,9 @@ unsafe impl Sync for nsStyleSVGPaint {}
use gecko_bindings::structs::nsStyleSVGReset;
unsafe impl Send for nsStyleSVGReset {}
unsafe impl Sync for nsStyleSVGReset {}
use gecko_bindings::structs::nsStyleSides;
unsafe impl Send for nsStyleSides {}
unsafe impl Sync for nsStyleSides {}
use gecko_bindings::structs::nsStyleTable;
unsafe impl Send for nsStyleTable {}
unsafe impl Sync for nsStyleTable {}
Expand Down Expand Up @@ -3359,11 +3361,17 @@ extern "C" {
) -> bool;
}
extern "C" {
pub fn Servo_ParseIntersectionObserverRootMargin(
pub fn Servo_IntersectionObserverRootMargin_Parse(
value: *const nsAString,
result: *mut nsCSSRect,
result: *mut nsStyleSides,
) -> bool;
}
extern "C" {
pub fn Servo_IntersectionObserverRootMargin_ToString(
rect: *const nsStyleSides,
result: *mut nsAString,
);
}
extern "C" {
pub fn Servo_ParseTransformIntoMatrix(
value: *const nsAString,
Expand Down

0 comments on commit a140a70

Please sign in to comment.