aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-05-19 12:16:00 +0200
committerMs2ger <Ms2ger@gmail.com>2016-05-19 12:16:00 +0200
commite01f9f3e7b45e577c4468ba770ea5b699a8ac2ab (patch)
tree29a6d67638c7961fdc7cb81b6c7a733ed4c766e2 /components
parentefd953f768a0975e48fa9d97bba49bee55da8eed (diff)
downloadservo-e01f9f3e7b45e577c4468ba770ea5b699a8ac2ab.tar.gz
servo-e01f9f3e7b45e577c4468ba770ea5b699a8ac2ab.zip
Make Constellation's fields private.
Diffstat (limited to 'components')
-rw-r--r--components/constellation/constellation.rs26
1 files changed, 13 insertions, 13 deletions
diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs
index 96befe8e827..05ac60f76ff 100644
--- a/components/constellation/constellation.rs
+++ b/components/constellation/constellation.rs
@@ -91,38 +91,38 @@ enum ReadyToSave {
/// the `script` crate).
pub struct Constellation<LTF, STF> {
/// A channel through which script messages can be sent to this object.
- pub script_sender: ConstellationChan<FromScriptMsg>,
+ script_sender: ConstellationChan<FromScriptMsg>,
/// A channel through which compositor messages can be sent to this object.
- pub compositor_sender: Sender<FromCompositorMsg>,
+ compositor_sender: Sender<FromCompositorMsg>,
/// A channel through which layout thread messages can be sent to this object.
- pub layout_sender: ConstellationChan<FromLayoutMsg>,
+ layout_sender: ConstellationChan<FromLayoutMsg>,
/// A channel through which panic messages can be sent to this object.
- pub panic_sender: ConstellationChan<PanicMsg>,
+ panic_sender: ConstellationChan<PanicMsg>,
/// Receives messages from scripts.
- pub script_receiver: Receiver<FromScriptMsg>,
+ script_receiver: Receiver<FromScriptMsg>,
/// Receives messages from the compositor
- pub compositor_receiver: Receiver<FromCompositorMsg>,
+ compositor_receiver: Receiver<FromCompositorMsg>,
/// Receives messages from the layout thread
- pub layout_receiver: Receiver<FromLayoutMsg>,
+ layout_receiver: Receiver<FromLayoutMsg>,
/// Receives panic messages.
- pub panic_receiver: Receiver<PanicMsg>,
+ panic_receiver: Receiver<PanicMsg>,
/// A channel (the implementation of which is port-specific) through which messages can be sent
/// to the compositor.
- pub compositor_proxy: Box<CompositorProxy>,
+ compositor_proxy: Box<CompositorProxy>,
/// A channel through which messages can be sent to the resource thread.
- pub resource_thread: ResourceThread,
+ resource_thread: ResourceThread,
/// A channel through which messages can be sent to the image cache thread.
- pub image_cache_thread: ImageCacheThread,
+ image_cache_thread: ImageCacheThread,
/// A channel through which messages can be sent to the developer tools.
devtools_chan: Option<Sender<DevtoolsControlMsg>>,
@@ -164,10 +164,10 @@ pub struct Constellation<LTF, STF> {
pending_frames: Vec<FrameChange>,
/// A channel through which messages can be sent to the time profiler.
- pub time_profiler_chan: time::ProfilerChan,
+ time_profiler_chan: time::ProfilerChan,
/// A channel through which messages can be sent to the memory profiler.
- pub mem_profiler_chan: mem::ProfilerChan,
+ mem_profiler_chan: mem::ProfilerChan,
phantom: PhantomData<(LTF, STF)>,