| Index: net/quic/quic_connection.cc
|
| diff --git a/net/quic/quic_connection.cc b/net/quic/quic_connection.cc
|
| index f684cf20d6b2247f78773c15ad83f5668d0b911a..fd487eb1ced2905e371bb89524918304bd41bd9e 100644
|
| --- a/net/quic/quic_connection.cc
|
| +++ b/net/quic/quic_connection.cc
|
| @@ -1721,7 +1721,7 @@ QuicFecGroup* QuicConnection::GetFecGroup() {
|
| if (fec_group_num == 0) {
|
| return nullptr;
|
| }
|
| - if (group_map_.count(fec_group_num) == 0) {
|
| + if (!ContainsKey(group_map_, fec_group_num)) {
|
| if (group_map_.size() >= kMaxFecGroups) { // Too many groups
|
| if (fec_group_num < group_map_.begin()->first) {
|
| // The group being requested is a group we've seen before and deleted.
|
|
|