Get the owner of a tab, or null if unowned (root-only for writes).
(tabId: number)
| 882 | |
| 883 | /** Get the owner of a tab, or null if unowned (root-only for writes). */ |
| 884 | getTabOwner(tabId: number): string | null { |
| 885 | return this.tabOwnership.get(tabId) || null; |
| 886 | } |
| 887 | |
| 888 | /** |
| 889 | * Check if a client can access a tab. |
no test coverage detected