| Index: third_party/WebKit/Source/modules/mediastream/RTCStatsResponse.cpp
|
| diff --git a/third_party/WebKit/Source/modules/mediastream/RTCStatsResponse.cpp b/third_party/WebKit/Source/modules/mediastream/RTCStatsResponse.cpp
|
| index b859246ee0eca2c060edd6e90b2b55684abe1dfc..5130a4f85453140ccc29b0c9f80bb54a44810ee2 100644
|
| --- a/third_party/WebKit/Source/modules/mediastream/RTCStatsResponse.cpp
|
| +++ b/third_party/WebKit/Source/modules/mediastream/RTCStatsResponse.cpp
|
| @@ -51,7 +51,7 @@ size_t RTCStatsResponse::addReport(const String& id, const String& type, double
|
|
|
| void RTCStatsResponse::addStatistic(size_t report, const String& name, const String& value)
|
| {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(report >= 0 && report < m_result.size());
|
| + SECURITY_DCHECK(report >= 0 && report < m_result.size());
|
| m_result[report]->addStatistic(name, value);
|
| }
|
|
|
|
|