OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef DEVICE_USB_USB_SERVICE_ANDROID_H_ | 5 #ifndef DEVICE_USB_USB_SERVICE_ANDROID_H_ |
6 #define DEVICE_USB_USB_SERVICE_ANDROID_H_ | 6 #define DEVICE_USB_USB_SERVICE_ANDROID_H_ |
7 | 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/android/scoped_java_ref.h" |
8 #include "device/usb/usb_service.h" | 11 #include "device/usb/usb_service.h" |
9 | 12 |
10 namespace device { | 13 namespace device { |
11 | 14 |
12 // USB service implementation for Android. This is a stub implementation that | 15 // USB service implementation for Android. This is a stub implementation that |
13 // does not return any devices. | 16 // does not return any devices. |
14 class UsbServiceAndroid : public UsbService { | 17 class UsbServiceAndroid : public UsbService { |
15 public: | 18 public: |
| 19 // Register C++ methods exposed to Java using JNI. |
| 20 static bool RegisterJNI(JNIEnv* env); |
| 21 |
16 UsbServiceAndroid(); | 22 UsbServiceAndroid(); |
17 ~UsbServiceAndroid() override; | 23 ~UsbServiceAndroid() override; |
18 | 24 |
| 25 // UsbService: |
19 scoped_refptr<UsbDevice> GetDevice(const std::string& guid) override; | 26 scoped_refptr<UsbDevice> GetDevice(const std::string& guid) override; |
20 void GetDevices(const GetDevicesCallback& callback) override; | 27 void GetDevices(const GetDevicesCallback& callback) override; |
| 28 |
| 29 private: |
| 30 // Java object org.chromium.device.usb.ChromeUsbService. |
| 31 base::android::ScopedJavaGlobalRef<jobject> j_object_; |
21 }; | 32 }; |
22 | 33 |
23 } // namespace device | 34 } // namespace device |
24 | 35 |
25 #endif // DEVICE_USB_USB_SERVICE_ANDROID_H_ | 36 #endif // DEVICE_USB_USB_SERVICE_ANDROID_H_ |
OLD | NEW |