mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
parent
05212b702d
commit
12f20f1ecc
10 changed files with 69 additions and 1 deletions
|
@ -180,6 +180,8 @@ pub enum Msg {
|
|||
ViewportConstrained(PipelineId, ViewportConstraints),
|
||||
/// A reply to the compositor asking if the output image is stable.
|
||||
IsReadyToSaveImageReply(bool),
|
||||
/// A favicon was detected
|
||||
NewFavicon(Url),
|
||||
}
|
||||
|
||||
impl Debug for Msg {
|
||||
|
@ -206,6 +208,7 @@ impl Debug for Msg {
|
|||
Msg::PaintTaskExited(..) => write!(f, "PaintTaskExited"),
|
||||
Msg::ViewportConstrained(..) => write!(f, "ViewportConstrained"),
|
||||
Msg::IsReadyToSaveImageReply(..) => write!(f, "IsReadyToSaveImageReply"),
|
||||
Msg::NewFavicon(..) => write!(f, "NewFavicon"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue