DevTools - add preliminary StyleSheetActor

This commit is contained in:
codehag 2018-10-14 12:50:23 +02:00
parent e4657c1496
commit c88cc3e966
3 changed files with 45 additions and 1 deletions

View file

@ -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(),
}
}
}