mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
internal runtime messages in safari
This commit is contained in:
@@ -273,6 +273,14 @@ export default class MainBackground {
|
||||
}
|
||||
}
|
||||
|
||||
sendInternalRuntimeMessage(message: any) {
|
||||
if (!this.isSafari) {
|
||||
throw new Error('Only safari can send internal runtime messages.');
|
||||
}
|
||||
|
||||
this.runtimeBackground.processMessage(message, { tab: null }, () => { /* No response needed. */ });
|
||||
}
|
||||
|
||||
private async buildContextMenu() {
|
||||
if (this.isSafari || !chrome.contextMenus || this.buildingContextMenu) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user