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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentAppRequestDataConversionTest.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/payments/PaymentAppRequestDataConversionTest.cpp
diff --git a/third_party/WebKit/Source/modules/payments/PaymentAppRequestDataConversionTest.cpp b/third_party/WebKit/Source/modules/payments/PaymentAppRequestDataConversionTest.cpp
index 0114ccf7b724eba93581a95ebe8b2736286dba37..8587fb9b019a26f3f6dc5f6bf3e1396829237297 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentAppRequestDataConversionTest.cpp
+++ b/third_party/WebKit/Source/modules/payments/PaymentAppRequestDataConversionTest.cpp
@@ -35,7 +35,7 @@ static WebPaymentAppRequestData createWebPaymentAppRequestDataForTest() {
WebPaymentAppRequestData webData;
webData.origin = WebString::fromUTF8("https://example.com");
Vector<WebPaymentMethodData> methodData;
- methodData.append(createWebPaymentMethodDataForTest());
+ methodData.push_back(createWebPaymentMethodDataForTest());
webData.methodData = WebVector<WebPaymentMethodData>(methodData);
webData.total = createWebPaymentItemForTest();
webData.optionId = WebString::fromUTF8("payment-app-id");

Powered by Google App Engine
This is Rietveld 408576698