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

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

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 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.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.cpp
index fee5c0ae390c0e4fdff4a222bba2f16b46b0eb47..91299a8229052aa557e1d40dff5ca28652b1b86e 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCLegacyStatsReport.cpp
@@ -42,7 +42,7 @@ Vector<String> RTCLegacyStatsReport::names() const {
Vector<String> result;
for (HashMap<String, String>::const_iterator it = m_stats.begin();
it != m_stats.end(); ++it) {
- result.append(it->key);
+ result.push_back(it->key);
}
return result;
}

Powered by Google App Engine
This is Rietveld 408576698