aboutsummaryrefslogtreecommitdiffstats
path: root/components/webgpu/identity.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/webgpu/identity.rs')
-rw-r--r--components/webgpu/identity.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/webgpu/identity.rs b/components/webgpu/identity.rs
index 8a76868a2df..3fe3d817081 100644
--- a/components/webgpu/identity.rs
+++ b/components/webgpu/identity.rs
@@ -57,12 +57,12 @@ pub enum WebGPUMsg {
#[derive(Debug)]
pub struct IdentityRecycler {
sender: IpcSender<WebGPUMsg>,
- self_sender: IpcSender<WebGPURequest>,
+ self_sender: IpcSender<WebGPURequest<'static>>,
}
pub struct IdentityRecyclerFactory {
pub sender: IpcSender<WebGPUMsg>,
- pub self_sender: IpcSender<WebGPURequest>,
+ pub self_sender: IpcSender<WebGPURequest<'static>>,
}
macro_rules! impl_identity_handler {