Index: content/public/android/java/src/org/chromium/IsReadyToPayService.aidl |
diff --git a/content/public/android/java/src/org/chromium/IsReadyToPayService.aidl b/content/public/android/java/src/org/chromium/IsReadyToPayService.aidl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c91daf25693aa0bcfb9c8ea8de975a82fabc20d1 |
--- /dev/null |
+++ b/content/public/android/java/src/org/chromium/IsReadyToPayService.aidl |
@@ -0,0 +1,19 @@ |
+// Copyright 2017 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; |
+ |
+/** |
+ * Interface to determine whether a payment app |
+ * is ready for payment. |
+ */ |
+interface IsReadyToPayService { |
+ /** |
+ * Method that will be called on the Service to query |
+ * whether the payment app is ready for payment. |
+ * |
+ * @param callback The callback to report back to the browser. |
+ */ |
+ oneway void isReadyToPay(IsReadyToPayServiceCallback callback); |
+} |