| 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;
|
| }
|
|
|