1
0
Fork 0

Fix breaking APIs in MigratingFenixApplication

master
Jonathan Almeida 2020-03-03 13:42:16 -05:00 committed by Emily Kager
parent edd1f013ba
commit aad041c34c
1 changed files with 2 additions and 5 deletions

View File

@ -28,10 +28,7 @@ class MigratingFenixApplication : FenixApplication() {
this.components.core.bookmarksStorage, this.components.core.bookmarksStorage,
this.components.core.topSiteStorage.storage this.components.core.topSiteStorage.storage
) )
.migrateLogins( .migrateLogins(this.components.core.passwordsStorage)
this.components.core.asyncPasswordsStorage,
this.components.core.passwordsEncryptionKey
)
.migrateFxa(this.components.backgroundServices.accountManager) .migrateFxa(this.components.backgroundServices.accountManager)
.migrateAddons( .migrateAddons(
this.components.core.engine, this.components.core.engine,
@ -45,7 +42,7 @@ class MigratingFenixApplication : FenixApplication() {
val migrationPushSubscriber by lazy { val migrationPushSubscriber by lazy {
MigrationPushRenewer( MigrationPushRenewer(
components.backgroundServices.push, components.push.feature,
components.migrationStore components.migrationStore
) )
} }