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

Unified 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 side-by-side diff with in-line comments
Download patch
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
deleted file mode 100644
index f14507df955250ee2ef3555d5139518d4457c355..0000000000000000000000000000000000000000
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/PaymentValidator.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// 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) {
- if (details == null) {
- return false;
- }
- return nativeValidatePaymentDetails(details.serialize());
- }
-
- private static native boolean nativeValidatePaymentDetails(ByteBuffer buffer);
-};
« 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