| Index: third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.cpp
|
| diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.cpp
|
| index ca4fc4ce5e86df8e5f25c0eaf29644171deb3d77..3c8aa296f1ccb716660edefabd3fdeca3f37aa01 100644
|
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.cpp
|
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.cpp
|
| @@ -34,7 +34,7 @@ RTCStatsResponse::RTCStatsResponse() {}
|
|
|
| RTCLegacyStatsReport* RTCStatsResponse::namedItem(const AtomicString& name) {
|
| if (m_idmap.find(name) != m_idmap.end())
|
| - return m_result[m_idmap.get(name)];
|
| + return m_result[m_idmap.at(name)];
|
| return nullptr;
|
| }
|
|
|
|
|