diff --git a/components/embedder_traits/resources.rs b/components/embedder_traits/resources.rs index bd4a19c6d60..d35bece3995 100644 --- a/components/embedder_traits/resources.rs +++ b/components/embedder_traits/resources.rs @@ -52,7 +52,6 @@ pub enum Resource { BluetoothBlocklist, DomainList, HstsPreloadList, - SSLCertificates, BadCertHTML, NetErrorHTML, UserAgentCSS, @@ -88,7 +87,6 @@ fn resources_for_tests() -> Box { Resource::BluetoothBlocklist => "gatt_blocklist.txt", Resource::DomainList => "public_domains.txt", Resource::HstsPreloadList => "hsts_preload.json", - Resource::SSLCertificates => "certs", Resource::BadCertHTML => "badcert.html", Resource::NetErrorHTML => "neterror.html", Resource::UserAgentCSS => "user-agent.css", diff --git a/ports/gstplugin/resources.rs b/ports/gstplugin/resources.rs index 9d84f28338e..a01ebbda4f3 100644 --- a/ports/gstplugin/resources.rs +++ b/ports/gstplugin/resources.rs @@ -26,7 +26,6 @@ fn filename(file: Resource) -> &'static str { Resource::BluetoothBlocklist => "gatt_blocklist.txt", Resource::DomainList => "public_domains.txt", Resource::HstsPreloadList => "hsts_preload.json", - Resource::SSLCertificates => "certs", Resource::BadCertHTML => "badcert.html", Resource::NetErrorHTML => "neterror.html", Resource::UserAgentCSS => "user-agent.css", diff --git a/ports/libsimpleservo/api/src/lib.rs b/ports/libsimpleservo/api/src/lib.rs index ece0e6d8dcd..91c4a3a206b 100644 --- a/ports/libsimpleservo/api/src/lib.rs +++ b/ports/libsimpleservo/api/src/lib.rs @@ -900,7 +900,6 @@ impl ResourceReaderMethods for ResourceReaderInstance { Resource::HstsPreloadList => { &include_bytes!("../../../../resources/hsts_preload.json")[..] }, - Resource::SSLCertificates => &include_bytes!("../../../../resources/certs")[..], Resource::BadCertHTML => &include_bytes!("../../../../resources/badcert.html")[..], Resource::NetErrorHTML => &include_bytes!("../../../../resources/neterror.html")[..], Resource::UserAgentCSS => &include_bytes!("../../../../resources/user-agent.css")[..], diff --git a/ports/winit/resources.rs b/ports/winit/resources.rs index 64a1cdc44ff..57050233bc4 100644 --- a/ports/winit/resources.rs +++ b/ports/winit/resources.rs @@ -21,7 +21,6 @@ fn filename(file: Resource) -> &'static str { Resource::BluetoothBlocklist => "gatt_blocklist.txt", Resource::DomainList => "public_domains.txt", Resource::HstsPreloadList => "hsts_preload.json", - Resource::SSLCertificates => "certs", Resource::BadCertHTML => "badcert.html", Resource::NetErrorHTML => "neterror.html", Resource::UserAgentCSS => "user-agent.css",