Commit d438625e authored by Alex Turner's avatar Alex Turner Committed by Commit Bot

Revert change of DCHECK to CHECK for bug validation

This DCHECK was added to validate the hypothesized cause of a bug. The
change is no longer necessary and shouldn't be included in the release.

Bug: 959194
Bug: 1004429
Change-Id: I48ddf24dfef0372f57d3705600918fe43e6744df
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1803670Reviewed-by: default avatarJosh Karlin <jkarlin@chromium.org>
Commit-Queue: Alex Turner <alexmt@chromium.org>
Cr-Commit-Position: refs/heads/master@{#697208}
parent 8c31421d
......@@ -1428,7 +1428,7 @@ int HttpCache::Transaction::DoDoneHeadersAddToEntryComplete(int result) {
// created a new ActiveEntry (new_entry_) to write to (and doomed the old
// one). Now that the new entry has been created, start writing the response.
CHECK_EQ(result, OK);
DCHECK_EQ(result, OK);
DCHECK_EQ(mode_, WRITE);
DCHECK(new_entry_);
DCHECK(response_.headers);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment