| OLD | NEW |
| 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 #include "device/generic_sensor/fake_platform_sensor.h" | 5 #include "device/generic_sensor/fake_platform_sensor.h" |
| 6 | 6 |
| 7 namespace device { | 7 namespace device { |
| 8 | 8 |
| 9 FakePlatformSensor::FakePlatformSensor(mojom::SensorType type, | 9 FakePlatformSensor::FakePlatformSensor( |
| 10 mojo::ScopedSharedBufferMapping mapping, | 10 mojom::SensorType type, |
| 11 uint64_t buffer_size, | 11 mojo::ScopedSharedBufferMapping mapping, |
| 12 PlatformSensorProvider* provider) | 12 PlatformSensorProvider* provider, |
| 13 : PlatformSensor(type, std::move(mapping), provider), started_(false) {} | 13 scoped_refptr<base::SingleThreadTaskRunner> task_runner) |
| 14 : PlatformSensor(type, |
| 15 std::move(mapping), |
| 16 provider, |
| 17 std::move(task_runner)), |
| 18 started_(false) {} |
| 14 | 19 |
| 15 FakePlatformSensor::~FakePlatformSensor() = default; | 20 FakePlatformSensor::~FakePlatformSensor() = default; |
| 16 | 21 |
| 17 mojom::ReportingMode FakePlatformSensor::GetReportingMode() { | 22 mojom::ReportingMode FakePlatformSensor::GetReportingMode() { |
| 18 return mojom::ReportingMode::CONTINUOUS; | 23 return mojom::ReportingMode::CONTINUOUS; |
| 19 } | 24 } |
| 20 | 25 |
| 21 PlatformSensorConfiguration FakePlatformSensor::GetDefaultConfiguration() { | 26 PlatformSensorConfiguration FakePlatformSensor::GetDefaultConfiguration() { |
| 22 return PlatformSensorConfiguration(); | 27 return PlatformSensorConfiguration(); |
| 23 } | 28 } |
| 24 | 29 |
| 25 bool FakePlatformSensor::StartSensor( | 30 bool FakePlatformSensor::StartSensor( |
| 26 const PlatformSensorConfiguration& configuration) { | 31 const PlatformSensorConfiguration& configuration) { |
| 27 config_ = configuration; | 32 config_ = configuration; |
| 28 started_ = true; | 33 started_ = true; |
| 29 return started_; | 34 return started_; |
| 30 } | 35 } |
| 31 | 36 |
| 32 void FakePlatformSensor::StopSensor() { | 37 void FakePlatformSensor::StopSensor() { |
| 33 started_ = false; | 38 started_ = false; |
| 34 } | 39 } |
| 35 | 40 |
| 36 bool FakePlatformSensor::CheckSensorConfiguration( | 41 bool FakePlatformSensor::CheckSensorConfiguration( |
| 37 const PlatformSensorConfiguration& configuration) { | 42 const PlatformSensorConfiguration& configuration) { |
| 38 return configuration.frequency() <= kMaxFrequencyValueForTests; | 43 return configuration.frequency() <= kMaxFrequencyValueForTests; |
| 39 } | 44 } |
| 40 | 45 |
| 41 } // namespace device | 46 } // namespace device |
| OLD | NEW |