diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-03-13 22:00:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-13 22:00:40 -0700 |
commit | f90e19f7055387a14cabdf11f77335c7763e3fb7 (patch) | |
tree | 54cc14d906b3cf97e614390eb67a3bdbec4b00ad /components/style/gecko_string_cache | |
parent | 8c8edb8731dc01d254839d0922590fba72f278c6 (diff) | |
parent | b02c786a42bbf7a6d61226e859a1761e1e0f08f9 (diff) | |
download | servo-f90e19f7055387a14cabdf11f77335c7763e3fb7.tar.gz servo-f90e19f7055387a14cabdf11f77335c7763e3fb7.zip |
Auto merge of #15935 - upsuper:binding-update, r=Wafflespeanut
Binding update
<!-- 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/15935)
<!-- Reviewable:end -->
Diffstat (limited to 'components/style/gecko_string_cache')
-rw-r--r-- | components/style/gecko_string_cache/atom_macro.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/components/style/gecko_string_cache/atom_macro.rs b/components/style/gecko_string_cache/atom_macro.rs index 5036173d421..f285404a87c 100644 --- a/components/style/gecko_string_cache/atom_macro.rs +++ b/components/style/gecko_string_cache/atom_macro.rs @@ -2616,6 +2616,8 @@ cfg_if! { pub static nsGkAtoms_widget: *mut nsIAtom; #[link_name = "_ZN9nsGkAtoms5widthE"] pub static nsGkAtoms_width: *mut nsIAtom; + #[link_name = "_ZN9nsGkAtoms10willChangeE"] + pub static nsGkAtoms_willChange: *mut nsIAtom; #[link_name = "_ZN9nsGkAtoms6windowE"] pub static nsGkAtoms_window: *mut nsIAtom; #[link_name = "_ZN9nsGkAtoms18headerWindowTargetE"] @@ -7543,6 +7545,8 @@ cfg_if! { pub static nsGkAtoms_widget: *mut nsIAtom; #[link_name = "?width@nsGkAtoms@@2PEAVnsIAtom@@EA"] pub static nsGkAtoms_width: *mut nsIAtom; + #[link_name = "?willChange@nsGkAtoms@@2PEAVnsIAtom@@EA"] + pub static nsGkAtoms_willChange: *mut nsIAtom; #[link_name = "?window@nsGkAtoms@@2PEAVnsIAtom@@EA"] pub static nsGkAtoms_window: *mut nsIAtom; #[link_name = "?headerWindowTarget@nsGkAtoms@@2PEAVnsIAtom@@EA"] @@ -12470,6 +12474,8 @@ cfg_if! { pub static nsGkAtoms_widget: *mut nsIAtom; #[link_name = "\x01?width@nsGkAtoms@@2PAVnsIAtom@@A"] pub static nsGkAtoms_width: *mut nsIAtom; + #[link_name = "\x01?willChange@nsGkAtoms@@2PAVnsIAtom@@A"] + pub static nsGkAtoms_willChange: *mut nsIAtom; #[link_name = "\x01?window@nsGkAtoms@@2PAVnsIAtom@@A"] pub static nsGkAtoms_window: *mut nsIAtom; #[link_name = "\x01?headerWindowTarget@nsGkAtoms@@2PAVnsIAtom@@A"] @@ -17400,6 +17406,8 @@ macro_rules! atom { { unsafe { $crate::string_cache::atom_macro::atom_from_static($crate::string_cache::atom_macro::nsGkAtoms_widget as *mut _) } }; ("width") => { unsafe { $crate::string_cache::atom_macro::atom_from_static($crate::string_cache::atom_macro::nsGkAtoms_width as *mut _) } }; +("will-change") => + { unsafe { $crate::string_cache::atom_macro::atom_from_static($crate::string_cache::atom_macro::nsGkAtoms_willChange as *mut _) } }; ("window") => { unsafe { $crate::string_cache::atom_macro::atom_from_static($crate::string_cache::atom_macro::nsGkAtoms_window as *mut _) } }; ("window-target") => |