mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Firefox timeline integration #4957
This commit is contained in:
parent
1e45d025b3
commit
97714ec5ed
15 changed files with 761 additions and 14 deletions
|
@ -60,6 +60,7 @@ pub struct TabActorMsg {
|
|||
outerWindowID: u32,
|
||||
consoleActor: String,
|
||||
inspectorActor: String,
|
||||
timelineActor: String,
|
||||
}
|
||||
|
||||
pub struct TabActor {
|
||||
|
@ -68,6 +69,7 @@ pub struct TabActor {
|
|||
pub url: String,
|
||||
pub console: String,
|
||||
pub inspector: String,
|
||||
pub timeline: String,
|
||||
}
|
||||
|
||||
impl Actor for TabActor {
|
||||
|
@ -143,6 +145,7 @@ impl TabActor {
|
|||
outerWindowID: 0, //FIXME: this should probably be the pipeline id
|
||||
consoleActor: self.console.clone(),
|
||||
inspectorActor: self.inspector.clone(),
|
||||
timelineActor: self.timeline.clone(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue