Chromium Code Reviews

Issue 6321001: Attempt 2 at fixing crash in ProcessPendingTabs. This differs from the (Closed)

Created:
9 years, 11 months ago by sky
Modified:
9 years, 7 months ago
Reviewers:
brettw
CC:
chromium-reviews, Paweł Hajdan Jr.
Visibility:
Public.

Description

Attempt 2 at fixing crash in ProcessPendingTabs. This differs from the one you reviewed in that I changed a DCHECK in ProcessPendingTabs to an if. See the comments there for details (this was triggering a failure on chromeos). Description from last attempt: With the current code, during closing a window with unload handlers if a tab is disconnected then we delay cleanup by way of PostTask with the tab being disconnected. During the time between when the disconnect happens and the task is run the unloader handler sets still maintain a reference to the tab. If ProcessPendingTabs is invoked during this window and the tab is deleted, then we can crash. I'm fixing it by making disconnect remove from the sets immediately, but delay the call to ProcessPendingTabs. I'm also doing a similar thing in TabDetachedAt. BUG=15620 TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=71388

Patch Set 1 #

Patch Set 2 : Change DCHECK to if #

Unified diffs Side-by-side diffs Stats (+36 lines, -18 lines)
M chrome/browser/ui/browser.h View 1 chunk +7 lines, -2 lines 0 comments
M chrome/browser/ui/browser.cc View 7 chunks +29 lines, -13 lines 0 comments
M chrome/test/data/reliability/known_crashes.txt View 1 chunk +0 lines, -3 lines 0 comments

Messages

Total messages: 2 (0 generated)
sky
The first version is the 1 you reviewed, the second the changed. If you only ...
9 years, 11 months ago (2011-01-13 23:23:58 UTC) #1
brettw
9 years, 11 months ago (2011-01-13 23:31:44 UTC) #2
LGTM

Powered by Google App Engine