aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2015-05-05 08:45:53 +0100
committerStephen Blott2015-05-05 08:45:53 +0100
commit1dc789958fb861a35571c064aa13fdc5495937bb (patch)
tree361e942d3b99e2cc1cfd667c4f9ca18b3eed42ff
parent26052a9d351344f66fea190fca95d85eda4eb415 (diff)
downloadvimium-1dc789958fb861a35571c064aa13fdc5495937bb.tar.bz2
Remove now-unnecessary comment.
-rw-r--r--background_scripts/main.coffee5
1 files changed, 2 insertions, 3 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index c599d19e..1b965314 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -599,9 +599,8 @@ registerFrame = (request, sender) ->
(frameIdsForTab[sender.tab.id] ?= []).push request.frameId
unregisterFrame = (request, sender) ->
- # When a tab is closing, Chrome sometimes passes on messages without sender.tab. Therefore, we guard
- # against this.
- # FIXME(smblott) Consequently, we have a space leak in frameIdsForTab, tabInfoMap and urlForTab.
+ # When a tab is closing, Chrome sometimes passes messages without sender.tab. Therefore, we guard against
+ # this.
tabId = sender.tab?.id
if tabId? and frameIdsForTab[tabId]?
if request.tab_is_closing