Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: extensions/browser/api/usb/usb_device_resource.cc

Issue 587453005: Cleanup: Remove some std::map::operator[] usage in ApiResourceManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698