1
0
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:
Kyle Spearrin
2018-04-21 23:55:34 -04:00
parent b97a6321de
commit 271f9df8ae
2 changed files with 3 additions and 3 deletions

2
jslib

Submodule jslib updated: fc1114a6bd...5e7115f78d

View File

@@ -145,11 +145,11 @@ export default class MainBackground {
this.folderService, this.cipherService, this.cryptoService, this.collectionService,
this.storageService, this.messagingService, (expired: boolean) => this.logout(expired));
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.totpService, this.utilsService, 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.storageService, this.appIdService);