Index: chrome/android/java/src/org/chromium/chrome/browser/payments/WebBasedPaymentAppBridge.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/WebBasedPaymentAppBridge.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/WebBasedPaymentAppBridge.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a07a38933f30364b1e3332414bc82bbefe7ea646 |
--- /dev/null |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/WebBasedPaymentAppBridge.java |
@@ -0,0 +1,23 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.chrome.browser.payments; |
+ |
+import org.chromium.payments.mojom.PaymentAppManifest; |
+ |
+import java.util.HashMap; |
+import java.util.Map; |
+ |
+/** |
+ * Native bridge for interacting with web based payment apps. |
+ */ |
+public class WebBasedPaymentAppBridge { |
+ /** |
+ * Get a map of all the app manifests keyed by the app id. |
+ */ |
+ public Map<String, PaymentAppManifest> getAllAppManifests() { |
+ // Not yet implemented |
+ return new HashMap<>(); |
+ } |
+} |