| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_DEVTOOLS_DEVICE_USB_USB_DEVICE_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_USB_USB_DEVICE_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_USB_USB_DEVICE_PROVIDER_H_ | 6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_USB_USB_DEVICE_PROVIDER_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/devtools/device/android_device_manager.h" | 8 #include "chrome/browser/devtools/device/android_device_manager.h" |
| 9 | 9 |
| 10 namespace crypto { | 10 namespace crypto { |
| 11 class RSAPrivateKey; | 11 class RSAPrivateKey; |
| 12 } | 12 } |
| 13 | 13 |
| 14 class AndroidUsbDevice; | 14 class AndroidUsbDevice; |
| 15 | 15 |
| 16 class UsbDeviceProvider : public AndroidDeviceManager::DeviceProvider { | 16 class UsbDeviceProvider : public AndroidDeviceManager::DeviceProvider { |
| 17 public: | 17 public: |
| 18 static void CountDevices(const base::Callback<void(int)>& callback); | 18 static void CountDevices(const base::Callback<void(int)>& callback); |
| 19 | 19 |
| 20 explicit UsbDeviceProvider(Profile* profile); | 20 explicit UsbDeviceProvider(Profile* profile); |
| 21 | 21 |
| 22 virtual void QueryDevices(const SerialsCallback& callback) override; | 22 void QueryDevices(const SerialsCallback& callback) override; |
| 23 | 23 |
| 24 virtual void QueryDeviceInfo(const std::string& serial, | 24 void QueryDeviceInfo(const std::string& serial, |
| 25 const DeviceInfoCallback& callback) override; | 25 const DeviceInfoCallback& callback) override; |
| 26 | 26 |
| 27 virtual void OpenSocket(const std::string& serial, | 27 void OpenSocket(const std::string& serial, |
| 28 const std::string& socket_name, | 28 const std::string& socket_name, |
| 29 const SocketCallback& callback) override; | 29 const SocketCallback& callback) override; |
| 30 | 30 |
| 31 virtual void ReleaseDevice(const std::string& serial) override; | 31 void ReleaseDevice(const std::string& serial) override; |
| 32 | 32 |
| 33 private: | 33 private: |
| 34 virtual ~UsbDeviceProvider(); | 34 ~UsbDeviceProvider() override; |
| 35 | 35 |
| 36 void EnumeratedDevices( | 36 void EnumeratedDevices( |
| 37 const SerialsCallback& callback, | 37 const SerialsCallback& callback, |
| 38 const std::vector<scoped_refptr<AndroidUsbDevice> >& devices); | 38 const std::vector<scoped_refptr<AndroidUsbDevice> >& devices); |
| 39 | 39 |
| 40 typedef std::map<std::string, scoped_refptr<AndroidUsbDevice> > UsbDeviceMap; | 40 typedef std::map<std::string, scoped_refptr<AndroidUsbDevice> > UsbDeviceMap; |
| 41 | 41 |
| 42 scoped_ptr<crypto::RSAPrivateKey> rsa_key_; | 42 scoped_ptr<crypto::RSAPrivateKey> rsa_key_; |
| 43 UsbDeviceMap device_map_; | 43 UsbDeviceMap device_map_; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_USB_USB_DEVICE_PROVIDER_H_ | 46 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_USB_USB_DEVICE_PROVIDER_H_ |
| OLD | NEW |