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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValidator.java

Issue 2645813006: Download web payment manifests. (Closed)
Patch Set: Rebase Created 3 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.chrome.browser.payments;
6
7 import org.chromium.base.annotations.JNINamespace;
8 import org.chromium.payments.mojom.PaymentDetails;
9
10 import java.nio.ByteBuffer;
11
12 /**
13 * Static class to represent a JNI interface to a C++ validation library.
14 */
15 @JNINamespace("payments")
16 public class PaymentValidator {
17 public static boolean validatePaymentDetails(PaymentDetails details) {
18 if (details == null) {
19 return false;
20 }
21 return nativeValidatePaymentDetails(details.serialize());
22 }
23
24 private static native boolean nativeValidatePaymentDetails(ByteBuffer buffer );
25 };
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentRequestImpl.java ('k') | chrome/android/java_sources.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698