mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Mark dead BrowsingContextActor fields with underscores.
Signed-off-by: Dominic Cooney <dominic.cooney@gmail.com>
This commit is contained in:
parent
3b93d20991
commit
30c5ad95d5
1 changed files with 14 additions and 14 deletions
|
@ -125,14 +125,14 @@ pub(crate) struct BrowsingContextActor {
|
|||
pub title: RefCell<String>,
|
||||
pub url: RefCell<String>,
|
||||
pub console: String,
|
||||
pub emulation: String,
|
||||
pub inspector: String,
|
||||
pub timeline: String,
|
||||
pub profiler: String,
|
||||
pub performance: String,
|
||||
pub styleSheets: String,
|
||||
pub _emulation: String,
|
||||
pub _inspector: String,
|
||||
pub _timeline: String,
|
||||
pub _profiler: String,
|
||||
pub _performance: String,
|
||||
pub _styleSheets: String,
|
||||
pub thread: String,
|
||||
pub tab: String,
|
||||
pub _tab: String,
|
||||
pub streams: RefCell<HashMap<StreamId, TcpStream>>,
|
||||
pub browsing_context_id: BrowsingContextId,
|
||||
pub active_pipeline: Cell<PipelineId>,
|
||||
|
@ -288,13 +288,13 @@ impl BrowsingContextActor {
|
|||
title: RefCell::new(String::from(title)),
|
||||
url: RefCell::new(url.into_string()),
|
||||
console: console,
|
||||
emulation: emulation.name(),
|
||||
inspector: inspector.name(),
|
||||
timeline: timeline.name(),
|
||||
profiler: profiler.name(),
|
||||
performance: performance.name(),
|
||||
styleSheets: styleSheets.name(),
|
||||
tab: tabdesc.name(),
|
||||
_emulation: emulation.name(),
|
||||
_inspector: inspector.name(),
|
||||
_timeline: timeline.name(),
|
||||
_profiler: profiler.name(),
|
||||
_performance: performance.name(),
|
||||
_styleSheets: styleSheets.name(),
|
||||
_tab: tabdesc.name(),
|
||||
thread: thread.name(),
|
||||
streams: RefCell::new(HashMap::new()),
|
||||
browsing_context_id: id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue