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

25 lines
566 B
TypeScript
Raw Normal View History

2018-02-19 18:33:32 +01:00
import {
CryptoService,
PlatformUtilsService,
} from '../abstractions';
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;
}
}