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

Side by Side Diff: extensions/browser/api/hid/hid_device_manager.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 #ifndef EXTENSIONS_BROWSER_API_HID_HID_DEVICE_MANAGER_H_ 5 #ifndef EXTENSIONS_BROWSER_API_HID_HID_DEVICE_MANAGER_H_
6 #define EXTENSIONS_BROWSER_API_HID_HID_DEVICE_MANAGER_H_ 6 #define EXTENSIONS_BROWSER_API_HID_HID_DEVICE_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/scoped_observer.h" 14 #include "base/scoped_observer.h"
15 #include "base/threading/thread_checker.h" 15 #include "base/threading/thread_checker.h"
16 #include "device/hid/hid_service.h" 16 #include "device/hid/hid_service.h"
17 #include "extensions/browser/browser_context_keyed_api_factory.h" 17 #include "extensions/browser/browser_context_keyed_api_factory.h"
18 #include "extensions/browser/event_router.h" 18 #include "extensions/browser/event_router.h"
19 #include "extensions/browser/extension_event_histogram_value.h" 19 #include "extensions/browser/extension_event_histogram_value.h"
20 #include "extensions/common/api/hid.h" 20 #include "extensions/common/api/hid.h"
21 21
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 ResourceIdToDeviceIdMap device_ids_; 124 ResourceIdToDeviceIdMap device_ids_;
125 DeviceIdToResourceIdMap resource_ids_; 125 DeviceIdToResourceIdMap resource_ids_;
126 base::WeakPtrFactory<HidDeviceManager> weak_factory_; 126 base::WeakPtrFactory<HidDeviceManager> weak_factory_;
127 127
128 DISALLOW_COPY_AND_ASSIGN(HidDeviceManager); 128 DISALLOW_COPY_AND_ASSIGN(HidDeviceManager);
129 }; 129 };
130 130
131 } // namespace extensions 131 } // namespace extensions
132 132
133 #endif // EXTENSIONS_BROWSER_API_HID_HID_DEVICE_MANAGER_H_ 133 #endif // EXTENSIONS_BROWSER_API_HID_HID_DEVICE_MANAGER_H_
OLDNEW
« no previous file with comments | « extensions/browser/api/hid/hid_connection_resource.h ('k') | extensions/browser/api/hid/hid_device_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698