Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1118)

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.h

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698