Skip to content

Commit

Permalink
Auto merge of #14457 - heycam:bindings-update-8, r=Manishearth
Browse files Browse the repository at this point in the history
update stylo bindings

<!-- Please describe your changes on the following line: -->

Update stylo bindings for the latest mozilla-central sync.

r? @Manishearth

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14457)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Dec 4, 2016
2 parents ea59e7b + 5aef349 commit 85f569b
Show file tree
Hide file tree
Showing 6 changed files with 1,051 additions and 1,032 deletions.
2 changes: 1 addition & 1 deletion components/style/binding_tools/regen.py
Expand Up @@ -96,6 +96,7 @@
"FrameRequestCallback",
"gfxAlternateValue",
"gfxFontFeature",
"gfxFontVariation",
"GridNamedArea",
"Image",
"ImageURL",
Expand Down Expand Up @@ -291,7 +292,6 @@
"nsIURI",
"nsMainThreadPtrHolder",
"nsRestyleHint",
"nsString",
"nsStyleBackground",
"nsStyleBorder",
"nsStyleColor",
Expand Down
7 changes: 6 additions & 1 deletion components/style/gecko_bindings/bindings.rs
Expand Up @@ -970,6 +970,10 @@ extern "C" {
extern "C" {
pub fn Servo_Element_ClearData(node: RawGeckoElementBorrowed);
}
extern "C" {
pub fn Servo_Element_ShouldTraverse(node: RawGeckoElementBorrowed)
-> bool;
}
extern "C" {
pub fn Servo_StyleSheet_Empty(parsing_mode: SheetParsingMode)
-> RawServoStyleSheetStrong;
Expand Down Expand Up @@ -1102,7 +1106,8 @@ extern "C" {
RawServoDeclarationBlockBorrowed,
property: *mut nsIAtom,
is_custom: bool,
buffer: *mut nsAString_internal);
buffer:
*mut nsAString_internal);
}
extern "C" {
pub fn Servo_DeclarationBlock_Count(declarations:
Expand Down

0 comments on commit 85f569b

Please sign in to comment.