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