| Index: third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.h
|
| diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.h b/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.h
|
| index a9055f9b8962b758d92225825114025b7a7ed873..5bb756f88c4690577cd93985ce4356e0da1fd353 100644
|
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.h
|
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.h
|
| @@ -46,7 +46,7 @@ class RTCLegacyStatsReport final
|
| double timestamp() const { return m_timestamp; }
|
| String id() { return m_id; }
|
| String type() { return m_type; }
|
| - String stat(const String& name) { return m_stats.get(name); }
|
| + String stat(const String& name) { return m_stats.at(name); }
|
| Vector<String> names() const;
|
|
|
| void addStatistic(const String& name, const String& value);
|
|
|