From 839bd4e8fcf802a8681c867da54c93a5570c055d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 12 Jan 2018 12:24:34 -0500 Subject: [PATCH] new runtime --- src/background/main.background.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/background/main.background.ts b/src/background/main.background.ts index 185ae6170e..a8a25afd4e 100644 --- a/src/background/main.background.ts +++ b/src/background/main.background.ts @@ -145,13 +145,14 @@ export default class MainBackground { opr.sidebarAction : (window as any).chrome.sidebarAction; // Background + this.runtimeBackground = new RuntimeBackground(this, this.autofillService, this.cipherService, + this.platformUtilsService); + if (!this.isSafari) { this.commandsBackground = new CommandsBackground(this, this.passwordGenerationService); this.contextMenusBackground = new ContextMenusBackground(this, this.cipherService, this.passwordGenerationService); this.idleBackground = new IdleBackground(this, this.lockService, this.storageService); - this.runtimeBackground = new RuntimeBackground(this, this.autofillService, this.cipherService, - this.platformUtilsService); this.tabsBackground = new TabsBackground(this); this.webRequestBackground = new WebRequestBackground(this.platformUtilsService, this.cipherService); this.windowsBackground = new WindowsBackground(this);