mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.
This commit is contained in:
parent
ff8cbff810
commit
95fc29fa0d
255 changed files with 3550 additions and 3362 deletions
|
@ -60,7 +60,7 @@ impl NullCompositor {
|
|||
initial_viewport: TypedSize2D(640_f32, 480_f32),
|
||||
visible_viewport: TypedSize2D(640_f32, 480_f32),
|
||||
device_pixel_ratio: ScaleFactor(1.0),
|
||||
}));
|
||||
})).unwrap();
|
||||
}
|
||||
|
||||
compositor
|
||||
|
@ -73,8 +73,8 @@ impl CompositorEventListener for NullCompositor {
|
|||
Msg::Exit(chan) => {
|
||||
debug!("shutting down the constellation");
|
||||
let ConstellationChan(ref con_chan) = self.constellation_chan;
|
||||
con_chan.send(ConstellationMsg::Exit);
|
||||
chan.send(());
|
||||
con_chan.send(ConstellationMsg::Exit).unwrap();
|
||||
chan.send(()).unwrap();
|
||||
}
|
||||
|
||||
Msg::ShutdownComplete => {
|
||||
|
@ -83,19 +83,19 @@ impl CompositorEventListener for NullCompositor {
|
|||
}
|
||||
|
||||
Msg::GetGraphicsMetadata(chan) => {
|
||||
chan.send(None);
|
||||
chan.send(None).unwrap();
|
||||
}
|
||||
|
||||
Msg::SetFrameTree(_, response_chan, _) => {
|
||||
response_chan.send(());
|
||||
response_chan.send(()).unwrap();
|
||||
}
|
||||
|
||||
Msg::ChangeLayerPipelineAndRemoveChildren(_, _, response_channel) => {
|
||||
response_channel.send(());
|
||||
response_channel.send(()).unwrap();
|
||||
}
|
||||
|
||||
Msg::CreateRootLayerForPipeline(_, _, _, response_channel) => {
|
||||
response_channel.send(());
|
||||
response_channel.send(()).unwrap();
|
||||
}
|
||||
|
||||
// Explicitly list ignored messages so that when we add a new one,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue