OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef SERVICES_DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_ | |
6 #define SERVICES_DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "base/single_thread_task_runner.h" | |
10 #include "services/device/public/interfaces/sensor_provider.mojom.h" | |
11 | |
12 namespace device { | |
13 | |
14 class PlatformSensorProvider; | |
15 class PlatformSensor; | |
16 | |
17 // Implementation of SensorProvider mojo interface. | |
18 // Uses PlatformSensorProvider singleton to create platform specific instances | |
19 // of PlatformSensor which are used by SensorImpl. | |
20 class SensorProviderImpl final : public mojom::SensorProvider { | |
21 public: | |
22 static void Create( | |
23 scoped_refptr<base::SingleThreadTaskRunner> file_task_runner, | |
24 mojom::SensorProviderRequest request); | |
25 | |
26 ~SensorProviderImpl() override; | |
27 | |
28 private: | |
29 explicit SensorProviderImpl(PlatformSensorProvider* provider); | |
30 | |
31 // SensorProvider implementation. | |
32 void GetSensor(mojom::SensorType type, | |
33 mojom::SensorRequest sensor_request, | |
34 const GetSensorCallback& callback) override; | |
35 | |
36 // Helper callback method to return created sensors. | |
37 void SensorCreated(mojom::SensorType type, | |
38 mojo::ScopedSharedBufferHandle cloned_handle, | |
39 mojom::SensorRequest sensor_request, | |
40 const GetSensorCallback& callback, | |
41 scoped_refptr<PlatformSensor> sensor); | |
42 | |
43 PlatformSensorProvider* provider_; | |
44 base::WeakPtrFactory<SensorProviderImpl> weak_ptr_factory_; | |
45 | |
46 DISALLOW_COPY_AND_ASSIGN(SensorProviderImpl); | |
47 }; | |
48 | |
49 } // namespace device | |
50 | |
51 #endif // SERVICES_DEVICE_GENERIC_SENSOR_SENSOR_PROVIDER_IMPL_H_ | |
OLD | NEW |