Make get_content_boxes return Vec.

This commit is contained in:
Ms2ger 2014-04-26 12:40:59 +02:00
parent 20f649da71
commit 02bcf97fd0
3 changed files with 5 additions and 5 deletions

View file

@ -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>);