mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Remove webdriver use of SubpageId
This commit is contained in:
parent
bc58cd2de0
commit
ed72e5766b
5 changed files with 13 additions and 15 deletions
|
@ -451,10 +451,10 @@ impl Handler {
|
|||
}
|
||||
|
||||
let frame = match receiver.recv().unwrap() {
|
||||
Ok(Some((pipeline_id, subpage_id))) => {
|
||||
Ok(Some(pipeline_id)) => {
|
||||
let (sender, receiver) = ipc::channel().unwrap();
|
||||
let ConstellationChan(ref const_chan) = self.constellation_chan;
|
||||
const_chan.send(ConstellationMsg::GetFrame(pipeline_id, subpage_id, sender)).unwrap();
|
||||
const_chan.send(ConstellationMsg::GetFrame(pipeline_id, sender)).unwrap();
|
||||
receiver.recv().unwrap()
|
||||
},
|
||||
Ok(None) => None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue