Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValidator.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValidator.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValidator.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8cecf6aa7cbf326ec51e39d948a0360fb4b48d23 |
| --- /dev/null |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValidator.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.base.annotations.JNINamespace; |
| +import org.chromium.payments.mojom.PaymentDetails; |
| + |
| +import java.nio.ByteBuffer; |
| + |
| +/** |
| + * Static class to represent a JNI interface to a C++ validation library. |
| + */ |
| +@JNINamespace("payments") |
| +public class PaymentValidator { |
| + public static boolean validatePaymentDetails(PaymentDetails details) { |
| + return nativeValidatePaymentDetails(details.serialize()); |
| + } |
| + |
| + private static native long nativeInit(); |
|
please use gerrit instead
2016/10/27 17:14:25
nativeInit() does not seem to be useful for this u
Kevin Bailey
2016/10/27 22:17:53
Done.
|
| + private static native boolean nativeValidatePaymentDetails(ByteBuffer buffer); |
| +}; |