1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-16 02:27:00 +02:00

fix function signatures

This commit is contained in:
Kyle Spearrin 2019-08-13 11:50:28 -04:00
parent 343ebe341b
commit 9e8094468b

View File

@ -134,8 +134,8 @@ export default class MainBackground {
this.systemService.clearClipboard(clipboardValue, clearMs);
}
});
this.storageService = new BrowserStorageService(this.platformUtilsService, false);
this.secureStorageService = new BrowserStorageService(this.platformUtilsService, true);
this.storageService = new BrowserStorageService(this.platformUtilsService);
this.secureStorageService = new BrowserStorageService(this.platformUtilsService);
this.i18nService = new I18nService(BrowserApi.getUILanguage(window),
BrowserApi.isSafariApi ? './_locales/' : null);
const cryptoFunctionService = new WebCryptoFunctionService(window, this.platformUtilsService);