diff options
author | Warren Fisher <github@warrenfisher.dev> | 2019-12-19 02:25:43 -0400 |
---|---|---|
committer | Warren Fisher <github@warrenfisher.dev> | 2019-12-19 02:25:43 -0400 |
commit | 5c3bda025144118fc8dd67a3f975d8f91fd25e78 (patch) | |
tree | 151ccfabe0eed9aadd4c46038c0450bbf1d65261 /components/script_traits/lib.rs | |
parent | f183d66217a3647a9a69d8004ab806193c7b021f (diff) | |
download | servo-5c3bda025144118fc8dd67a3f975d8f91fd25e78.tar.gz servo-5c3bda025144118fc8dd67a3f975d8f91fd25e78.zip |
Remove Optional pipeline_id
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 158614c78a7..6989d53eb72 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -962,7 +962,7 @@ pub struct WorkerScriptLoadOrigin { /// the referrer policy which is used pub referrer_policy: Option<ReferrerPolicy>, /// the pipeline id of the entity requesting the load - pub pipeline_id: Option<PipelineId>, + pub pipeline_id: PipelineId, } /// Errors from executing a paint worklet |