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 #include "extensions/browser/api/usb/usb_device_resource.h" | 5 #include "extensions/browser/api/usb/usb_device_resource.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
| 12 #include "base/lazy_instance.h" |
12 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
13 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
14 #include "device/usb/usb_device_handle.h" | 15 #include "device/usb/usb_device_handle.h" |
15 #include "extensions/browser/api/api_resource.h" | 16 #include "extensions/browser/api/api_resource.h" |
16 #include "extensions/common/api/usb.h" | 17 #include "extensions/common/api/usb.h" |
17 | 18 |
18 using content::BrowserThread; | 19 using content::BrowserThread; |
19 using device::UsbDeviceHandle; | 20 using device::UsbDeviceHandle; |
20 | 21 |
21 namespace extensions { | 22 namespace extensions { |
(...skipping 16 matching lines...) Expand all Loading... |
38 | 39 |
39 UsbDeviceResource::~UsbDeviceResource() { | 40 UsbDeviceResource::~UsbDeviceResource() { |
40 device_->Close(); | 41 device_->Close(); |
41 } | 42 } |
42 | 43 |
43 bool UsbDeviceResource::IsPersistent() const { | 44 bool UsbDeviceResource::IsPersistent() const { |
44 return false; | 45 return false; |
45 } | 46 } |
46 | 47 |
47 } // namespace extensions | 48 } // namespace extensions |
OLD | NEW |