summaryrefslogtreecommitdiffstats
path: root/device/usb/usb_configuration_android.h
diff options
context:
space:
mode:
Diffstat (limited to 'device/usb/usb_configuration_android.h')
-rw-r--r--device/usb/usb_configuration_android.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/device/usb/usb_configuration_android.h b/device/usb/usb_configuration_android.h
new file mode 100644
index 0000000..610ac07
--- /dev/null
+++ b/device/usb/usb_configuration_android.h
@@ -0,0 +1,25 @@
+// Copyright 2015 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.
+
+#ifndef DEVICE_USB_USB_CONFIGURATION_ANDROID_H_
+#define DEVICE_USB_USB_CONFIGURATION_ANDROID_H_
+
+#include "base/android/scoped_java_ref.h"
+#include "device/usb/usb_descriptors.h"
+
+namespace device {
+
+class UsbConfigurationAndroid {
+ public:
+ // Register C++ methods exposed to Java using JNI.
+ static bool RegisterJNI(JNIEnv* env);
+
+ static UsbConfigDescriptor Convert(
+ JNIEnv* env,
+ const base::android::JavaRef<jobject>& usb_configuration);
+};
+
+} // namespace device
+
+#endif // DEVICE_USB_USB_CONFIGURATION_ANDROID_H_