Index: third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
diff --git a/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp b/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
index 316471bc34fcde60b4cdd01a493cc3b0242676ab..09c41648b6081e31a812ec6eebd5543fceb01925 100644 |
--- a/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
+++ b/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp |
@@ -83,7 +83,7 @@ void HostsUsingFeatures::documentDetached(Document& document) { |
if (!url.protocolIsInHTTPFamily()) |
return; |
- m_urlAndValues.append(std::make_pair(url, counter)); |
+ m_urlAndValues.push_back(std::make_pair(url, counter)); |
document.HostsUsingFeaturesValue().clear(); |
DCHECK(document.HostsUsingFeaturesValue().isEmpty()); |
} |