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

Side by Side Diff: device/generic_sensor/platform_sensor.h

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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 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_GENERIC_SENSOR_PLATFORM_SENSOR_H_ 5 #ifndef DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_H_
6 #define DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_H_ 6 #define DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "base/observer_list.h" 14 #include "base/observer_list.h"
15 #include "base/single_thread_task_runner.h"
15 #include "device/generic_sensor/generic_sensor_export.h" 16 #include "device/generic_sensor/generic_sensor_export.h"
16 #include "device/generic_sensor/public/cpp/sensor_reading.h" 17 #include "device/generic_sensor/public/cpp/sensor_reading.h"
17 #include "device/generic_sensor/public/interfaces/sensor.mojom.h" 18 #include "device/generic_sensor/public/interfaces/sensor.mojom.h"
18 #include "mojo/public/cpp/system/buffer.h" 19 #include "mojo/public/cpp/system/buffer.h"
19 20
20 namespace device { 21 namespace device {
21 22
22 class PlatformSensorProvider; 23 class PlatformSensorProvider;
23 class PlatformSensorConfiguration; 24 class PlatformSensorConfiguration;
24 25
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 base::ObserverList<Client, true> clients_; 102 base::ObserverList<Client, true> clients_;
102 ConfigMap config_map_; 103 ConfigMap config_map_;
103 PlatformSensorProvider* provider_; 104 PlatformSensorProvider* provider_;
104 base::WeakPtrFactory<PlatformSensor> weak_factory_; 105 base::WeakPtrFactory<PlatformSensor> weak_factory_;
105 DISALLOW_COPY_AND_ASSIGN(PlatformSensor); 106 DISALLOW_COPY_AND_ASSIGN(PlatformSensor);
106 }; 107 };
107 108
108 } // namespace device 109 } // namespace device
109 110
110 #endif // DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_H_ 111 #endif // DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_H_
OLDNEW
« no previous file with comments | « device/generic_sensor/linux/sensor_device_manager.h ('k') | device/generic_sensor/platform_sensor_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698