mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
DevTools - add preliminary StyleSheetActor
This commit is contained in:
parent
e4657c1496
commit
c88cc3e966
3 changed files with 45 additions and 1 deletions
|
@ -65,6 +65,7 @@ pub struct BrowsingContextActorMsg {
|
|||
timelineActor: String,
|
||||
profilerActor: String,
|
||||
performanceActor: String,
|
||||
styleSheetsActor: String,
|
||||
}
|
||||
|
||||
pub struct BrowsingContextActor {
|
||||
|
@ -76,6 +77,7 @@ pub struct BrowsingContextActor {
|
|||
pub timeline: String,
|
||||
pub profiler: String,
|
||||
pub performance: String,
|
||||
pub styleSheets: String,
|
||||
pub thread: String,
|
||||
}
|
||||
|
||||
|
@ -174,6 +176,7 @@ impl BrowsingContextActor {
|
|||
timelineActor: self.timeline.clone(),
|
||||
profilerActor: self.profiler.clone(),
|
||||
performanceActor: self.performance.clone(),
|
||||
styleSheetsActor: self.styleSheets.clone(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue