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

Side by Side Diff: device/usb/usb_service_linux.h

Issue 2923773002: Fix include guards in //device/usb (Closed)
Patch Set: Fix include guards in //device/usb Created 3 years, 6 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
« no previous file with comments | « device/usb/usb_service_impl.h ('k') | device/usb/usb_service_win.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_LINUX_H_
6 #define DEVICE_USB_USB_SERVICE_LINUX_H_
7
5 #include <list> 8 #include <list>
6 #include <memory> 9 #include <memory>
7 #include <unordered_map> 10 #include <unordered_map>
8 11
9 #include "base/macros.h" 12 #include "base/macros.h"
10 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
11 #include "device/usb/usb_service.h" 14 #include "device/usb/usb_service.h"
12 15
13 namespace device { 16 namespace device {
14 17
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 57
55 std::unique_ptr<FileThreadHelper> helper_; 58 std::unique_ptr<FileThreadHelper> helper_;
56 DeviceMap devices_by_path_; 59 DeviceMap devices_by_path_;
57 60
58 base::WeakPtrFactory<UsbServiceLinux> weak_factory_; 61 base::WeakPtrFactory<UsbServiceLinux> weak_factory_;
59 62
60 DISALLOW_COPY_AND_ASSIGN(UsbServiceLinux); 63 DISALLOW_COPY_AND_ASSIGN(UsbServiceLinux);
61 }; 64 };
62 65
63 } // namespace device 66 } // namespace device
67
68 #endif // DEVICE_USB_USB_SERVICE_LINUX_H_
OLDNEW
« no previous file with comments | « device/usb/usb_service_impl.h ('k') | device/usb/usb_service_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698