blob: 52f939b535796854fb8814f1bc9d68bfe880c45f [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2019 The Chromium Authors
Tibor Goldschwendt2f5c9412019-10-31 21:28:262// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Sam Maier8509cc62024-02-14 21:57:145#include "third_party/jni_zero/jni_zero.h"
Tibor Goldschwendt2f5c9412019-10-31 21:28:266
7// This method is required by the module loading backend. And it is supposed to
8// register VR's native JNI methods. However, since VR's Android-specific native
9// code still lives in the base module, VR's JNI registration is invoked
10// manually. Therefore, this function does nothing.
Andrew Grieveff18140b2024-11-25 17:29:1911JNI_ZERO_BOUNDARY_EXPORT bool JNI_OnLoad_vr(JNIEnv* env) {
Tibor Goldschwendt2f5c9412019-10-31 21:28:2612 return true;
13}