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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestTestBase.java

Issue 2604193002: Detect locally installed native Android payment apps. (Closed)
Patch Set: null-check 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: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestTestBase.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestTestBase.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestTestBase.java
index d423ebd81e5580a30d416372ce9b6331fed53eeb..1c6045e875f58de193c0a0e05d954e7e424afe48 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestTestBase.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestTestBase.java
@@ -856,7 +856,7 @@ abstract class PaymentRequestTestBase extends ChromeActivityTestCaseBase<ChromeT
final TestPay app = new TestPay(methodName, instrumentPresence, responseSpeed);
PaymentAppFactory.getInstance().addAdditionalFactory(new PaymentAppFactoryAddition() {
@Override
- public void create(Context context, WebContents webContents,
+ public void create(Context context, WebContents webContents, Set<String> methodNames,
final PaymentAppFactory.PaymentAppCreatedCallback callback) {
if (creationSpeed == IMMEDIATE_CREATION) {
callback.onPaymentAppCreated(app);

Powered by Google App Engine
This is Rietveld 408576698