Add windowId property to removeInfo object

The removeInfo object passed to listeners for chrome.tabs.onRemove should have a "windowId" property.
This commit is contained in:
Joel Spadin
2013-11-05 22:48:40 -06:00
parent 7e81971a23
commit 04bf22d402
+1
View File
@@ -1718,6 +1718,7 @@ declare module chrome.tabs {
}
interface TabRemoveInfo {
windowId: number;
isWindowClosing: boolean;
}