Commit 18982895 authored by hclam@chromium.org's avatar hclam@chromium.org

Cast: Remove an incorrect assert

I'm seeing asserts coming from PacedSender. The assert is not correct
and should be removed.

NOTRY=true
TBR=miu
BUG=none

Review URL: https://codereview.chromium.org/409943004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284739 0039d316-1c4b-4281-b951-d872f2087c98
parent 6be07632
...@@ -252,8 +252,6 @@ void PacedSender::SendStoredPackets() { ...@@ -252,8 +252,6 @@ void PacedSender::SendStoredPackets() {
} }
DCHECK_LE(sent_time_buffer_.size(), DCHECK_LE(sent_time_buffer_.size(),
kMaxBurstSize * kMaxDedupeWindowMs / kPacingIntervalMs); kMaxBurstSize * kMaxDedupeWindowMs / kPacingIntervalMs);
DCHECK_LE(sent_time_.size(),
2 * kMaxBurstSize * kMaxDedupeWindowMs / kPacingIntervalMs);
state_ = State_Unblocked; state_ = State_Unblocked;
} }
......
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