upgrade mozilla deps

This commit is contained in:
Fabian Freund
2025-12-22 09:26:20 +01:00
parent 5f235d2901
commit fae6b774a6
4 changed files with 4 additions and 4 deletions
@@ -3,7 +3,7 @@ version = "1.0-SNAPSHOT"
buildscript {
ext.kotlin_version = "2.1.20"
ext.mozillaComponentsVersion = '145.0'
ext.mozillaComponentsVersion = '146.0.1'
repositories {
google()
@@ -212,7 +212,7 @@ class GeckoTabsApiImpl : GeckoTabsApi {
System.currentTimeMillis(),
tab.id,
SecurityInfoState(
tab.content.securityInfo.secure,
tab.content.securityInfo.isSecure,
tab.content.securityInfo.host,
tab.content.securityInfo.issuer
)
@@ -76,7 +76,7 @@ class Events(
System.currentTimeMillis(),
tab.id,
SecurityInfoState(
tab.content.securityInfo.secure,
tab.content.securityInfo.isSecure,
tab.content.securityInfo.host,
tab.content.securityInfo.issuer,
)
@@ -42,7 +42,7 @@ class UseCases(
/**
* Use cases related to the downloads feature.
*/
val downloadsUseCases: DownloadsUseCases by lazy { DownloadsUseCases(store) }
val downloadsUseCases: DownloadsUseCases by lazy { DownloadsUseCases(store, context) }
/**
* Use cases related to Custom Tabs.