mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
The alias is left there temporarilly and will be removed completely in a later commit where also components/style/gecko/generated/structs_{debug|release}.rs are re-generated (they still use the old alias).
29 lines
1 KiB
Rust
29 lines
1 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
//! The stylesheet loader is the abstraction used to trigger network requests
|
|
//! for `@import` rules.
|
|
|
|
use cssparser::SourceLocation;
|
|
use media_queries::MediaList;
|
|
use parser::ParserContext;
|
|
use servo_arc::Arc;
|
|
use shared_lock::{Locked, SharedRwLock};
|
|
use stylesheets::import_rule::ImportRule;
|
|
use values::specified::url::SpecifiedUrl;
|
|
|
|
/// The stylesheet loader is the abstraction used to trigger network requests
|
|
/// for `@import` rules.
|
|
pub trait StylesheetLoader {
|
|
/// Request a stylesheet after parsing a given `@import` rule, and return
|
|
/// the constructed `@import` rule.
|
|
fn request_stylesheet(
|
|
&self,
|
|
url: SpecifiedUrl,
|
|
location: SourceLocation,
|
|
context: &ParserContext,
|
|
lock: &SharedRwLock,
|
|
media: Arc<Locked<MediaList>>,
|
|
) -> Arc<Locked<ImportRule>>;
|
|
}
|