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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h 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/platform/exported/WebURLResponse.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
index 8de3db694b6026ccd07792d78e9110a52094a0b8..0f4245016b6bc32281aedb3b4ce321fd5de15e59 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
@@ -281,7 +281,7 @@ void WebURLResponse::setSecurityDetails(
const WebSecurityDetails& webSecurityDetails) {
ResourceResponse::SignedCertificateTimestampList sctList;
for (const auto& iter : webSecurityDetails.sctList) {
- sctList.append(
+ sctList.push_back(
static_cast<ResourceResponse::SignedCertificateTimestamp>(iter));
}
Vector<String> sanList;
@@ -290,7 +290,7 @@ void WebURLResponse::setSecurityDetails(
Vector<AtomicString> certificate;
for (const auto& iter : webSecurityDetails.certificate) {
AtomicString cert = iter;
- certificate.append(cert);
+ certificate.push_back(cert);
}
m_resourceResponse->setSecurityDetails(
webSecurityDetails.protocol, webSecurityDetails.keyExchange,

Powered by Google App Engine
This is Rietveld 408576698