mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Rename Compositor messages SetIds and Paint
These names no longer reflect what the messages do, so rename them to SetFrameTree and AssignPaintedBuffers.
This commit is contained in:
parent
cf616b90a2
commit
ad751e4926
6 changed files with 48 additions and 48 deletions
|
@ -86,7 +86,7 @@ impl CompositorEventListener for NullCompositor {
|
|||
chan.send(None);
|
||||
}
|
||||
|
||||
Msg::SetIds(_, response_chan, _) => {
|
||||
Msg::SetFrameTree(_, response_chan, _) => {
|
||||
response_chan.send(());
|
||||
}
|
||||
|
||||
|
@ -96,12 +96,12 @@ impl CompositorEventListener for NullCompositor {
|
|||
|
||||
// Explicitly list ignored messages so that when we add a new one,
|
||||
// we'll notice and think about whether it needs a response, like
|
||||
// SetIds.
|
||||
// SetFrameTree.
|
||||
|
||||
Msg::CreateOrUpdateRootLayer(..) |
|
||||
Msg::CreateOrUpdateDescendantLayer(..) |
|
||||
Msg::SetLayerOrigin(..) |
|
||||
Msg::Paint(..) |
|
||||
Msg::AssignPaintedBuffers(..) |
|
||||
Msg::ChangeReadyState(..) |
|
||||
Msg::ChangePaintState(..) |
|
||||
Msg::ScrollFragmentPoint(..) |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue