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

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

Issue 2507223002: Implement IsReadyToPay handling (Closed)
Patch Set: Fix oneway usage 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..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);
+}
« no previous file with comments | « content/public/android/BUILD.gn ('k') | content/public/android/java/src/org/chromium/IsReadyToPayServiceCallback.aidl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698