blob: 9b44b4a5754973548e17af5774196ba5c3f48fb9 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.url;
import org.jni_zero.JNINamespace;
import org.jni_zero.NativeMethods;
/** Helpers for OriginJavaTest that need to call into native code. */
@JNINamespace("url")
public class OriginJavaTestHelper {
public static void testOriginEquivalence() {
OriginJavaTestHelperJni.get().testOriginEquivalence();
}
@NativeMethods
interface Natives {
void testOriginEquivalence();
}
}