mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 07:13:32 +00:00
pass crypto function service more
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: fc1114a6bd...5e7115f78d
@@ -145,11 +145,11 @@ export default class MainBackground {
|
|||||||
this.folderService, this.cipherService, this.cryptoService, this.collectionService,
|
this.folderService, this.cipherService, this.cryptoService, this.collectionService,
|
||||||
this.storageService, this.messagingService, (expired: boolean) => this.logout(expired));
|
this.storageService, this.messagingService, (expired: boolean) => this.logout(expired));
|
||||||
this.passwordGenerationService = new PasswordGenerationService(this.cryptoService, this.storageService);
|
this.passwordGenerationService = new PasswordGenerationService(this.cryptoService, this.storageService);
|
||||||
this.totpService = new TotpService(this.storageService);
|
this.totpService = new TotpService(this.storageService, cryptoFunctionService);
|
||||||
this.autofillService = new AutofillService(this.cipherService, this.tokenService,
|
this.autofillService = new AutofillService(this.cipherService, this.tokenService,
|
||||||
this.totpService, this.utilsService, this.platformUtilsService);
|
this.totpService, this.utilsService, this.platformUtilsService);
|
||||||
this.containerService = new ContainerService(this.cryptoService, this.platformUtilsService);
|
this.containerService = new ContainerService(this.cryptoService, this.platformUtilsService);
|
||||||
this.auditService = new AuditService(this.cryptoService);
|
this.auditService = new AuditService(cryptoFunctionService);
|
||||||
this.analytics = new Analytics(window, () => BrowserApi.gaFilter(), this.platformUtilsService,
|
this.analytics = new Analytics(window, () => BrowserApi.gaFilter(), this.platformUtilsService,
|
||||||
this.storageService, this.appIdService);
|
this.storageService, this.appIdService);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user