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

Unified Diff: content/public/android/java/src/org/chromium/IsReadyToPayService.aidl

Issue 2507223002: Implement IsReadyToPay handling (Closed)
Patch Set: Add separate exceptions + comment 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: 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..6b6ac7c976914a2b43394f7042601a72927cccae
--- /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.
+ */
+oneway 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.
+ */
+ void isReadyToPay(IsReadyToPayServiceCallback callback);
+}

Powered by Google App Engine
This is Rietveld 408576698