diff options
author | Josh Matthews <josh@joshmatthews.net> | 2025-01-10 03:19:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-10 08:19:19 +0000 |
commit | c94d909a8688589209cdf0c7ae58e40f9b8c411e (patch) | |
tree | 12febf23eed4438249fd4d276c4d8b35dee22a97 /components/script/stylesheet_set.rs | |
parent | f220d6d3a52296794cd19935e9e59cc75a179a44 (diff) | |
download | servo-c94d909a8688589209cdf0c7ae58e40f9b8c411e.tar.gz servo-c94d909a8688589209cdf0c7ae58e40f9b8c411e.zip |
script: Limit public exports. (#34915)
* script: Restrict reexport visibility of DOM types.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* script: Mass pub->pub(crate) conversion.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* script: Hide existing dead code warnings.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Formatting.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Fix clippy warnings.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Formatting.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Fix unit tests.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Fix clippy.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* More formatting.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
---------
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
Diffstat (limited to 'components/script/stylesheet_set.rs')
-rw-r--r-- | components/script/stylesheet_set.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/stylesheet_set.rs b/components/script/stylesheet_set.rs index c4794b62d12..b3de20e379f 100644 --- a/components/script/stylesheet_set.rs +++ b/components/script/stylesheet_set.rs @@ -8,7 +8,7 @@ use style::stylesheet_set::{AuthorStylesheetSet, DocumentStylesheetSet}; use style::stylesheets::StylesheetInDocument; /// Functionality common to DocumentStylesheetSet and AuthorStylesheetSet. -pub enum StylesheetSetRef<'a, S> +pub(crate) enum StylesheetSetRef<'a, S> where S: StylesheetInDocument + PartialEq + 'static, { @@ -25,7 +25,7 @@ where /// Appends a new stylesheet to the current set. /// /// No device implies not computing invalidations. - pub fn append_stylesheet( + pub(crate) fn append_stylesheet( &mut self, device: Option<&Device>, sheet: S, @@ -38,7 +38,7 @@ where } /// Insert a given stylesheet before another stylesheet in the document. - pub fn insert_stylesheet_before( + pub(crate) fn insert_stylesheet_before( &mut self, device: Option<&Device>, sheet: S, @@ -56,7 +56,7 @@ where } /// Remove a given stylesheet from the set. - pub fn remove_stylesheet( + pub(crate) fn remove_stylesheet( &mut self, device: Option<&Device>, sheet: S, |