1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/services/container.service.ts

23 lines
628 B
TypeScript
Raw Normal View History

import { CryptoService } from '../abstractions/crypto.service';
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
2018-01-10 04:28:29 +01:00
export class ContainerService {
constructor(private cryptoService: CryptoService,
private platformUtilsService: PlatformUtilsService) {
}
attachToWindow(win: any) {
2018-01-11 20:00:32 +01:00
if (!win.bitwardenContainerService) {
win.bitwardenContainerService = this;
2018-01-10 04:28:29 +01:00
}
}
getCryptoService(): CryptoService {
return this.cryptoService;
}
getPlatformUtilsService(): PlatformUtilsService {
return this.platformUtilsService;
}
}