From 04bf22d402743b72a9b85e41f505c313d47ffd18 Mon Sep 17 00:00:00 2001 From: Joel Spadin Date: Tue, 5 Nov 2013 22:48:40 -0600 Subject: [PATCH] Add windowId property to removeInfo object The removeInfo object passed to listeners for chrome.tabs.onRemove should have a "windowId" property. --- chrome/chrome.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/chrome.d.ts b/chrome/chrome.d.ts index 8b77c9617..32be9d309 100644 --- a/chrome/chrome.d.ts +++ b/chrome/chrome.d.ts @@ -1718,6 +1718,7 @@ declare module chrome.tabs { } interface TabRemoveInfo { + windowId: number; isWindowClosing: boolean; }