blob: 68e426226f00ce409ebda02c3e73f3347d9fd3db [file] [log] [blame]
François Beaufort4eb9a11e2022-05-17 09:28:281// Copyright 2022 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#include "chrome/browser/usb/android/jni_headers/UsbBridge_jni.h"
François Beaufort4eb9a11e2022-05-17 09:28:286#include "content/public/browser/web_contents.h"
7
8jboolean JNI_UsbBridge_IsWebContentsConnectedToUsbDevice(
9 JNIEnv* env,
10 const base::android::JavaParamRef<jobject>& java_web_contents) {
Matt Reynoldsed00ca7e72022-08-18 20:56:2011 return content::WebContents::FromJavaWebContents(java_web_contents)
12 ->IsConnectedToUsbDevice();
François Beaufort4eb9a11e2022-05-17 09:28:2813}