mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Make get_content_boxes return Vec.
This commit is contained in:
parent
20f649da71
commit
02bcf97fd0
3 changed files with 5 additions and 5 deletions
|
@ -83,7 +83,7 @@ impl<S: Encoder<E>, E> Encodable<S, E> for TrustedNodeAddress {
|
|||
pub type UntrustedNodeAddress = *c_void;
|
||||
|
||||
pub struct ContentBoxResponse(pub Rect<Au>);
|
||||
pub struct ContentBoxesResponse(pub ~[Rect<Au>]);
|
||||
pub struct ContentBoxesResponse(pub Vec<Rect<Au>>);
|
||||
pub struct HitTestResponse(pub UntrustedNodeAddress);
|
||||
pub struct MouseOverResponse(pub Vec<UntrustedNodeAddress>);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue