blob: 68e426226f00ce409ebda02c3e73f3347d9fd3db [file] [log] [blame]
// Copyright 2022 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.
#include "chrome/browser/usb/android/jni_headers/UsbBridge_jni.h"
#include "content/public/browser/web_contents.h"
jboolean JNI_UsbBridge_IsWebContentsConnectedToUsbDevice(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& java_web_contents) {
return content::WebContents::FromJavaWebContents(java_web_contents)
->IsConnectedToUsbDevice();
}